1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <project name="geotools" default="dist" basedir=".">
|
---|
3 | <!-- enter the SVN commit message -->
|
---|
4 | <property name="commit.message" value="Commit message"/>
|
---|
5 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
6 | <property name="plugin.main.version" value="10899"/>
|
---|
7 |
|
---|
8 | <property name="plugin.author" value="Don-vip"/>
|
---|
9 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.geotools.GeoToolsPlugin"/>
|
---|
10 | <property name="plugin.description" value="Provides parts of the GeoTools library for other JOSM plugins. Not meant to be installed directly by users, but rather as a dependency for other plugins."/>
|
---|
11 | <property name="plugin.icon" value="images/compass.png"/>
|
---|
12 | <property name="plugin.canloadatruntime" value="true"/>
|
---|
13 | <property name="plugin.requires" value="jts;ejml"/>
|
---|
14 | <property name="plugin.stage" value="20"/>
|
---|
15 |
|
---|
16 | <!-- ** include targets that all plugins have in common ** -->
|
---|
17 | <import file="../build-common.xml"/>
|
---|
18 |
|
---|
19 | <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
|
---|
20 | <include name="jts.jar"/>
|
---|
21 | <include name="ejml.jar"/>
|
---|
22 | </fileset>
|
---|
23 |
|
---|
24 | <target name="merge-geotools-services">
|
---|
25 | <taskdef resource="org/pescuma/mergeservices/antlib.xml" classpath="tools/merge-services.jar" />
|
---|
26 | <delete dir="jar/META-INF/services"/>
|
---|
27 | <merge-services dest="jar">
|
---|
28 | <fileset dir="lib">
|
---|
29 | <include name="**/*.jar" />
|
---|
30 | <exclude name="**/*-javadoc.jar" />
|
---|
31 | <exclude name="**/*-source.jar" />
|
---|
32 | </fileset>
|
---|
33 | </merge-services>
|
---|
34 | </target>
|
---|
35 |
|
---|
36 | <!--
|
---|
37 | **********************************************************
|
---|
38 | ** post-dist - replaces files from the generated jar
|
---|
39 | **********************************************************
|
---|
40 | -->
|
---|
41 | <target name="post-dist">
|
---|
42 | <move file="${plugin.jar}" todir="${plugin.build.dir}" />
|
---|
43 | <jar destfile="${plugin.jar}" filesetmanifest="merge" manifestencoding="UTF-8">
|
---|
44 | <fileset dir="jar"/>
|
---|
45 | <zipfileset src="${plugin.build.dir}/${ant.project.name}.jar">
|
---|
46 | <exclude name="*.class"/>
|
---|
47 | <exclude name="*.html"/>
|
---|
48 | <exclude name="META-INF/**/*"/>
|
---|
49 | <exclude name="javax/*.txt"/>
|
---|
50 | </zipfileset>
|
---|
51 | <zipfileset src="${plugin.build.dir}/${ant.project.name}.jar">
|
---|
52 | <include name="META-INF/MANIFEST.MF"/>
|
---|
53 | <include name="META-INF/javax.media.jai.registryFile.jai"/>
|
---|
54 | </zipfileset>
|
---|
55 | </jar>
|
---|
56 | <delete file="${plugin.build.dir}/${ant.project.name}.jar" />
|
---|
57 | </target>
|
---|
58 |
|
---|
59 | <!--
|
---|
60 | **********************************************************
|
---|
61 | ** additional-manifest - add additional manifest entries
|
---|
62 | **********************************************************
|
---|
63 | -->
|
---|
64 | <target name="additional-manifest">
|
---|
65 | <manifest file="MANIFEST" mode="update">
|
---|
66 | <!-- JAI requires a vendor name for some of its deep internals,
|
---|
67 | see https://stackoverflow.com/a/18495658/2257172 -->
|
---|
68 | <attribute name="Specification-Title" value="JOSM GeoTools plugin"/>
|
---|
69 | <attribute name="Specification-Version" value="19.0"/>
|
---|
70 | <attribute name="Specification-Vendor" value="JOSM developers" />
|
---|
71 | <attribute name="Implementation-Title" value="org.openstreetmap.josm.plugins.geotools" />
|
---|
72 | <attribute name="Implementation-Version" value="19.0" />
|
---|
73 | <attribute name="Implementation-Vendor" value="JOSM developers"/>
|
---|
74 | </manifest>
|
---|
75 | </target>
|
---|
76 | </project>
|
---|