1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Index: libcommons-attributes-java-2.2/build.xml
===================================================================
--- libcommons-attributes-java-2.2.orig/build.xml 2006-08-03 08:42:22.000000000 +0200
+++ libcommons-attributes-java-2.2/build.xml 2008-11-23 20:44:16.000000000 +0100
@@ -50,7 +50,7 @@
</equals>
</condition>
</target>
- <target name="compile" description="o Compile the code" depends="get-deps">
+ <target name="compile" description="o Compile the code">
<mkdir dir="${classesdir}">
</mkdir>
<javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html"
@@ -101,7 +101,7 @@
<target name="jar" description="o Create the jar" depends="compile">
<jar jarfile="target/${final.name.api}.jar" includes="org/apache/commons/attributes/*,LICENSE.txt,NOTICE.txt,manifest.mf" basedir="${classesdir}" manifest="api/manifest.mf">
</jar>
- <jar jarfile="target/${final.name.compiler}.jar" excludes="org/apache/commons/attributes/*,manifest.mf" includes="**/*" basedir="${classesdir}" manifest="compiler/manifest.mf">
+ <jar jarfile="target/${final.name.compiler}.jar" excludes="org/apache/commons/attributes/*.class,manifest.mf" includes="**/*" basedir="${classesdir}" manifest="compiler/manifest.mf">
</jar>
<jar jarfile="target/${final.name.plugin}.jar" includes="**/*" excludes="manifest.mf" basedir="${plugindir}" manifest="${plugindir}/manifest.mf">
</jar>
|