Changeset 29013 in osm for applications/editors/josm/plugins/geotools
- Timestamp:
- 2012-12-01T22:39:56+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/geotools
- Files:
-
- 1 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geotools/build.xml
r29007 r29013 20 20 <!-- 21 21 ********************************************************** 22 ** setup-dist - copies files for distribution 23 ********************************************************** 24 --> 25 <target name="setup-dist"> 26 <copy todir="${plugin.build.dir}/META-INF"> 27 <fileset dir="META-INF"/> 28 </copy> 29 <antcall target="setup-dist-default" /> 30 </target> 31 32 <!-- 33 ********************************************************** 34 ** post-dist - removes files from the generated jar 22 ** post-dist - replaces files from the generated jar 35 23 ********************************************************** 36 24 --> … … 38 26 <move file="${plugin.jar}" todir="${plugin.build.dir}" /> 39 27 <jar destfile="${plugin.jar}"> 28 <fileset dir="jar"/> 40 29 <zipfileset src="${plugin.build.dir}/${ant.project.name}.jar"> 41 30 <exclude name="*.class"/> 42 31 <exclude name="*.html"/> 43 <exclude name="META-INF/*.txt"/> 44 <exclude name="META-INF/*.xml"/> 45 <exclude name="META-INF/maven/**/*" /> 32 <exclude name="META-INF/**/*"/> 46 33 <exclude name="javax/*.txt"/> 47 34 </zipfileset> 35 <zipfileset src="${plugin.build.dir}/${ant.project.name}.jar" includes="META-INF/*.jai" /> 48 36 </jar> 49 37 <delete file="${plugin.build.dir}/${ant.project.name}.jar" />
Note:
See TracChangeset
for help on using the changeset viewer.