[jboss-cvs] JBossAS SVN: r70299 - projects/test/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Mar 1 18:10:05 EST 2008


Author: ALRubinger
Date: 2008-03-01 18:10:05 -0500 (Sat, 01 Mar 2008)
New Revision: 70299

Modified:
   projects/test/trunk/pom.xml
Log:
Include jboss-as-server-manager within this distribution (Backwards-compat)

Modified: projects/test/trunk/pom.xml
===================================================================
--- projects/test/trunk/pom.xml	2008-03-01 22:50:07 UTC (rev 70298)
+++ projects/test/trunk/pom.xml	2008-03-01 23:10:05 UTC (rev 70299)
@@ -29,7 +29,34 @@
 
   <build>
     <plugins>
+    
+      <!-- Dependency Plugin Configuration -->
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <!-- Include the ServerManager classes in the distribution -->
+          <execution>
+            <id>include-servermanager</id>
+            <phase>compile</phase>
+            <goals>
+              <goal>unpack</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>org.jboss.jbossas</groupId>
+                  <artifactId>jboss-as-server-manager</artifactId>
+                </artifactItem>
+              </artifactItems>
+              <outputDirectory>${project.build.directory}/classes</outputDirectory>
+              <overWriteIfNewer>true</overWriteIfNewer>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      
+      <plugin>
         <groupId>jboss.maven-plugins</groupId>
         <artifactId>jboss-deploy-maven-plugin</artifactId>
       </plugin>




More information about the jboss-cvs-commits mailing list