[jboss-cvs] JBossAS SVN: r82455 - in trunk: bootstrap and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Dec 19 16:51:42 EST 2008


Author: pgier
Date: 2008-12-19 16:51:41 -0500 (Fri, 19 Dec 2008)
New Revision: 82455

Modified:
   trunk/bootstrap/pom.xml
   trunk/build/build.xml
   trunk/pom.xml
   trunk/tools/buildmagic/lib/buildmagic-tasks.jar
Log:
[JBBUILD-506] Switch the bootstrap module over to maven.

Modified: trunk/bootstrap/pom.xml
===================================================================
--- trunk/bootstrap/pom.xml	2008-12-19 21:09:33 UTC (rev 82454)
+++ trunk/bootstrap/pom.xml	2008-12-19 21:51:41 UTC (rev 82455)
@@ -19,6 +19,48 @@
         <directory>src/resources</directory>
       </resource>
     </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>create-output</id>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <phase>package</phase>
+            <configuration>
+              <tasks>
+                <mkdir dir="output/lib"/>
+                <copy file="target/${artifactId}-${version}.jar"
+                      tofile="output/lib/jboss-bootstrap.jar"/>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-clean-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>clean-output</id>
+            <goals>
+              <goal>clean</goal>
+            </goals>
+            <phase>clean</phase>
+            <configuration>
+              <filesets>
+                <fileset>
+                  <directory>output</directory>
+                </fileset>
+              </filesets>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
   </build>
   <dependencies>
     <!-- Compile (global dependencies) -->

Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml	2008-12-19 21:09:33 UTC (rev 82454)
+++ trunk/build/build.xml	2008-12-19 21:51:41 UTC (rev 82455)
@@ -82,7 +82,7 @@
 
       <!-- Modules -->
       <module name="aspects"/>
-      <module name="bootstrap"/>
+      <module name="bootstrap" externalBuild="true"/>
       <module name="cluster"/>
       <module name="connector"/>
       <module name="console"/>

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2008-12-19 21:09:33 UTC (rev 82454)
+++ trunk/pom.xml	2008-12-19 21:51:41 UTC (rev 82455)
@@ -419,6 +419,7 @@
       <id>integrated-build</id>
       <modules>
         <module>component-matrix</module>
+        <module>bootstrap</module>
       </modules>
     </profile>
     

Modified: trunk/tools/buildmagic/lib/buildmagic-tasks.jar
===================================================================
(Binary files differ)




More information about the jboss-cvs-commits mailing list