source: osm/applications/editors/josm/plugins/proj4j/build.xml@ 32450

Last change on this file since 32450 was 32014, checked in by donvip, 9 years ago

[josm_proj4j] update to JOSM 9559

  • Property svn:mime-type set to text/xml
File size: 1.7 KB
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
2<project name="proj4j" 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 -->
[32014]6 <property name="plugin.main.version" value="9559"/>
[30417]7
8 <property name="plugin.author" value="Josh Doe &lt;josh@joshdoe.com&gt;"/>
9 <property name="plugin.class" value="org.openstreetmap.josm.plugins.proj4j.Proj4J"/>
10 <property name="plugin.description" value="adds projections from Proj4J"/>
[31923]11 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Proj4J"/>
[30417]12 <property name="plugin.early" value="true"/>
13
14 <!-- ** include targets that all plugins have in common ** -->
15 <import file="../build-common.xml"/>
[30483]16
17 <target name="setup-dist-default">
18 <copy todir="${plugin.build.dir}/resources" failonerror="no" includeemptydirs="no">
19 <fileset dir="resources" excludes="nad"/>
20 </copy>
21 <copy todir="${plugin.build.dir}/nad">
22 <fileset dir="resources/nad"/>
23 </copy>
24 <copy todir="${plugin.build.dir}/images" failonerror="no" includeemptydirs="no">
25 <fileset dir="images"/>
26 </copy>
27 <copy todir="${plugin.build.dir}/data" failonerror="no" includeemptydirs="no">
28 <fileset dir="data"/>
29 </copy>
30 <copy todir="${plugin.build.dir}">
31 <fileset dir=".">
32 <include name="README"/>
33 <include name="LICENSE*"/>
34 <include name="*GPL*"/>
35 </fileset>
36 </copy>
37 </target>
[30417]38
[26174]39</project>
Note: See TracBrowser for help on using the repository browser.