Changeset 36015 in osm for applications/editors/josm/plugins/geotools/build.xml
- Timestamp:
- 2022-08-23T20:06:58+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geotools/build.xml
r35959 r36015 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name="geotools" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant"> 2 <project name="geotools" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:rsel="antlib:org.apache.tools.ant.types.resources.selectors"> 3 3 <!-- enter the SVN commit message --> 4 4 <property name="commit.message" value="Commit message"/> … … 29 29 <!--<include name="jackson.jar"/>--> 30 30 </fileset> 31 <macrodef name="merge-text-files"> 32 <attribute name="mergefile"/> 33 <attribute name="targetdir"/> 34 <sequential> 35 <concat destfile="@{targetdir}/@{mergefile}"> 36 <restrict> 37 <rsel:name name="@{mergefile}"/> 38 <archives> 39 <zips> 40 <fileset dir="${plugin.lib.dir}" includes="*.jar" excludes="*-sources.jar, *-javadoc.jar" erroronmissingdir="no"/> 41 </zips> 42 </archives> 43 </restrict> 44 </concat> 45 </sequential> 46 </macrodef> 31 47 32 48 <target name="merge-geotools-services" depends="fetch_dependencies"> … … 40 56 </fileset> 41 57 </merge-services> 42 <echo>Check the updated files in jar/META-INF/services for lines where two 43 services got merged. Example: 44 org.geotools.coverage.util.FilterFunction_isCoverageorg.geotools.filter.AreaFunction 45 </echo> 58 <echo>Check the updated files in jar/META-INF/services for lines where two 59 services got merged. Example: 60 org.geotools.coverage.util.FilterFunction_isCoverageorg.geotools.filter.AreaFunction 61 </echo> 62 63 <merge-text-files mergefile="META-INF/javax.media.jai.registryFile.jai" targetdir="jar"/> 64 <merge-text-files mergefile="META-INF/registryFile.jai" targetdir="jar"/> 65 <merge-text-files mergefile="META-INF/registryFile.jaiext" targetdir="jar"/> 46 66 </target> 47 67
Note:
See TracChangeset
for help on using the changeset viewer.