summaryrefslogtreecommitdiff
blob: b4de400cb3a1a371debe363a4d9396d045643f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Only in commons-attributes-patched/: .build.xml.swo
Only in commons-attributes-patched/: .build.xml.swp
diff -ru commons-attributes/build.xml commons-attributes-patched/build.xml
--- commons-attributes/build.xml	2004-08-01 16:18:27.000000000 -0400
+++ commons-attributes-patched/build.xml	2005-06-24 21:31:02.000000000 -0400
@@ -86,6 +86,9 @@
                 <include name="**/*.xservice">
                 </include>
             </fileset>
+	    <fileset dir="compiler/src/java">
+	    	<include name="org/apache/commons/attributes/anttasks.properties"/>
+	    </fileset>
         </copy>
         <copy todir="${classesdir}">
             <fileset dir="." includes="LICENSE.txt,NOTICE.txt"/>
@@ -100,7 +103,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" basedir="${classesdir}">
         </jar>
-        <jar jarfile="target/${final.name.compiler}.jar" excludes="org/apache/commons/attributes/*" includes="**/*" basedir="${classesdir}">
+        <jar jarfile="target/${final.name.compiler}.jar" excludes="org/apache/commons/attributes/*.class" includes="**/*,org/apache/commons/attributes/anttasks.properties" basedir="${classesdir}">
         </jar>
     </target>
     <target name="clean" description="o Clean up the generated directories">
@@ -162,4 +167,4 @@
         <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
         </unjar>
     </target>
-</project>
\ No newline at end of file
+</project>
Only in commons-attributes-patched/: target