[jboss-cvs] JBossAS SVN: r59635 - trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Jan 14 23:25:27 EST 2007


Author: scott.stark at jboss.org
Date: 2007-01-14 23:25:25 -0500 (Sun, 14 Jan 2007)
New Revision: 59635

Modified:
   trunk/build/build-distr.xml
   trunk/build/build.xml
Log:
Add the profileservice module to the dist build

Modified: trunk/build/build-distr.xml
===================================================================
--- trunk/build/build-distr.xml	2007-01-15 04:01:10 UTC (rev 59634)
+++ trunk/build/build-distr.xml	2007-01-15 04:25:25 UTC (rev 59635)
@@ -1645,6 +1645,19 @@
       </fileset>
     </copy>
   </target>
+
+  <!-- ProfileService extensions -->
+  <target name="_module-profileservice-most">
+    <property name="_module.name" value="profileservice" override="true"/>
+    <property name="_module.output" override="true" value="${project.root}/${_module.name}/output"/>
+    
+    <mkdir dir="${install.all.lib}"/>
+    
+    <!-- The profileservice module output -->
+    <copy todir="${install.all.lib}" filtering="no">
+      <fileset dir="${_module.output}/lib" includes="*.jar"/>
+    </copy>
+  </target>
   
   <!-- ============ -->
   <!--   Spring     -->

Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml	2007-01-15 04:01:10 UTC (rev 59634)
+++ trunk/build/build.xml	2007-01-15 04:25:25 UTC (rev 59635)
@@ -638,6 +638,13 @@
      <ant antfile="build-distr.xml" target="_module-hibernate-int-all"/>
   </target>
 
+   <target name="_module-profileservice-most">
+      <ant antfile="build-distr.xml" target="_module-profileservice-most"/>
+   </target>
+   
+   <target name="_module-profileservice-all">
+      <ant antfile="build-distr.xml" target="_module-profileservice-most"/>
+   </target>
 
     <!-- ============ -->
     <!--   Spring     -->




More information about the jboss-cvs-commits mailing list