[jboss-cvs] JBossAS SVN: r74512 - projects/ejb3/trunk/common.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 12 23:56:25 EDT 2008


Author: ALRubinger
Date: 2008-06-12 23:56:25 -0400 (Thu, 12 Jun 2008)
New Revision: 74512

Added:
   projects/ejb3/trunk/common/jboss-ejb3-common-client.xml
Modified:
   projects/ejb3/trunk/common/pom.xml
Log:
[EJBTHREE-1418] Created Client Assembly for EJB3 Common

Added: projects/ejb3/trunk/common/jboss-ejb3-common-client.xml
===================================================================
--- projects/ejb3/trunk/common/jboss-ejb3-common-client.xml	                        (rev 0)
+++ projects/ejb3/trunk/common/jboss-ejb3-common-client.xml	2008-06-13 03:56:25 UTC (rev 74512)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  vi:ts=2:sw=2:expandtab:
+-->
+<assembly xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.0.0.xsd"
+>
+  <id>client</id>
+  <formats>
+    <format>jar</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <fileSets>
+    <fileSet>
+      <directory>target/classes</directory>
+      <outputDirectory></outputDirectory>
+      <includes>
+        <include>org/jboss/ejb3/common/registrar/spi/**</include>
+      </includes>
+    </fileSet>
+
+  </fileSets>
+</assembly>

Modified: projects/ejb3/trunk/common/pom.xml
===================================================================
--- projects/ejb3/trunk/common/pom.xml	2008-06-13 01:56:47 UTC (rev 74511)
+++ projects/ejb3/trunk/common/pom.xml	2008-06-13 03:56:25 UTC (rev 74512)
@@ -4,7 +4,7 @@
   <parent>
     <artifactId>jboss-ejb3-build</artifactId>
     <groupId>org.jboss.ejb3</groupId>
-    <version>0.13.7</version>
+    <version>0.13.9-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
 
@@ -21,27 +21,35 @@
   </description>
   <url>http://www.jboss.org/jbossejb3/</url>
   
+    <!-- Build Configuration -->
   <build>
 
-        <plugins>
-          <!-- Surefire -->
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <redirectTestOutputToFile>true</redirectTestOutputToFile>
-              <printSummary>true</printSummary>
-              <testFailureIgnore>false</testFailureIgnore>
-              <includes>
-                <include>**/*TestCase.java</include>
-                <include>**/*TestSuite.java</include>
-              </includes>
-              <forkMode>always</forkMode>
-              <argLine>-ea</argLine>
-            </configuration>
-          </plugin>
+    <plugins>
 
-        </plugins>
+      <!-- Assembly Plugin (Common Client) -->
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.2-beta-1</version>
+        <executions>
+          <execution>
+            <id>make-assembly</id>
+            <phase>package</phase>
+            <goals>
+              <goal>attached</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <descriptors>
+            <descriptor>jboss-ejb3-common-client.xml</descriptor>
+          </descriptors>
+          <attach>true</attach>
+        </configuration>
+        <inherited>false</inherited>
+      </plugin>
 
+    </plugins>
+
   </build>
 
   <!-- Dependencies -->




More information about the jboss-cvs-commits mailing list