You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2007/01/02 23:47:03 UTC

svn commit: r491956 - /jakarta/commons/proper/lang/trunk/build.xml

Author: bayard
Date: Tue Jan  2 14:47:03 2007
New Revision: 491956

URL: http://svn.apache.org/viewvc?view=rev&rev=491956
Log:
Don't get the point of 'dist' and 'dist-build' being separate, so merging them

Modified:
    jakarta/commons/proper/lang/trunk/build.xml

Modified: jakarta/commons/proper/lang/trunk/build.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/build.xml?view=diff&rev=491956&r1=491955&r2=491956
==============================================================================
--- jakarta/commons/proper/lang/trunk/build.xml (original)
+++ jakarta/commons/proper/lang/trunk/build.xml Tue Jan  2 14:47:03 2007
@@ -90,14 +90,12 @@
 			<classpath refid="compile.classpath"/>
 		</javadoc>
 	</target>
-	<target name="dist" depends="compile,javadoc" description="Create binary distribution">
+	<target name="dist" depends="clean,compile,javadoc" description="Create binary distribution">
 		<mkdir dir="${dist.home}"/>
 		<copy file="LICENSE.txt" todir="${dist.home}"/>
 		<copy file="NOTICE.txt" todir="${dist.home}"/>
 		<copy file="RELEASE-NOTES.txt" todir="${dist.home}"/>
 		<antcall target="jar"/>
-	</target>
-	<target name="dist-build" depends="clean,dist" description="Build binary distribution files">
         <copy file="${dist.home}/${final.name}.jar" todir="."/>
 		<jar jarfile="${final.name}-sources.jar" basedir="${source.home}" manifest="${build.home}/conf/MANIFEST.MF"/>
 		<jar jarfile="${final.name}-javadoc.jar" basedir="${dist.home}/docs/api" manifest="${build.home}/conf/MANIFEST.MF"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: svn commit: r491956 - /jakarta/commons/proper/lang/trunk/build.xml

Posted by Stephen Colebourne <sc...@btopenworld.com>.
I think it may allow the jar to be created on JDK1.3, and the dist on 
JDK1.4, but you'll need to check that.

bayard@apache.org wrote:
> Author: bayard
> Date: Tue Jan  2 14:47:03 2007
> New Revision: 491956
> 
> URL: http://svn.apache.org/viewvc?view=rev&rev=491956
> Log:
> Don't get the point of 'dist' and 'dist-build' being separate, so merging them

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org