You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2008/12/23 20:29:25 UTC

svn commit: r729072 - /commons/proper/digester/trunk/build.xml

Author: rahul
Date: Tue Dec 23 11:29:24 2008
New Revision: 729072

URL: http://svn.apache.org/viewvc?rev=729072&view=rev
Log:
Add version to jar file name (Ant).

Modified:
    commons/proper/digester/trunk/build.xml

Modified: commons/proper/digester/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/build.xml?rev=729072&r1=729071&r2=729072&view=diff
==============================================================================
--- commons/proper/digester/trunk/build.xml (original)
+++ commons/proper/digester/trunk/build.xml Tue Dec 23 11:29:24 2008
@@ -259,7 +259,7 @@
   <target name="jar" depends="compile, test"
    description="Create commons-digester.jar">
     <mkdir      dir="${dist.home}"/>
-    <jar    jarfile="${dist.home}/commons-${component.name}.jar"
+    <jar    jarfile="${dist.home}/commons-${component.name}-${component.version}.jar"
             basedir="${build.home}/classes"
            manifest="${build.home}/conf/MANIFEST.MF"/>
   </target>