[jboss-cvs] JBossAS SVN: r62968 - projects/aop/trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu May 10 11:58:26 EDT 2007


Author: kabir.khan at jboss.com
Date: 2007-05-10 11:58:25 -0400 (Thu, 10 May 2007)
New Revision: 62968

Modified:
   projects/aop/trunk/build/build.xml
Log:
[JBAOP-395] Add target to build the aop reference manual, and jar up the release. We now finally have a 1-step build for making releases

Modified: projects/aop/trunk/build/build.xml
===================================================================
--- projects/aop/trunk/build/build.xml	2007-05-10 15:37:44 UTC (rev 62967)
+++ projects/aop/trunk/build/build.xml	2007-05-10 15:58:25 UTC (rev 62968)
@@ -210,9 +210,13 @@
 
    <target name="release"
       description="Builds the default release structure."
-      depends="clean, release-output"
+      depends="init"
       >
       <ant antfile="build-release.xml" target="release"/>
+   	
+   	<jar destfile="${project.release}.jar" basedir="${project.release}"/>
+   	<move file="${project.release}.jar" todir="${module.output}/lib"/>
+   
 
       <!-- TODO create zip file -->
   </target>
@@ -298,6 +302,10 @@
     <echo>Proxy is set to ${proxy.host}:${proxy.port}</echo>
     <setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}"/>
   </target>
+	
+  <target name="aop.reference.docs" depends="init" description="Builds the reference manual for JBoss AOP that should be part of ths distribution">
+     <ant antfile="build.xml" dir="../aop/docs/reference"/>
+  </target>
 
 </project>
 




More information about the jboss-cvs-commits mailing list