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

Last change on this file since 31415 was 30483, checked in by donvip, 10 years ago

[josm_proj4j] fix #josm10091 - fix build

  • Property svn:mime-type set to text/xml
File size: 1.7 KB
Line 
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 -->
6 <property name="plugin.main.version" value="7001"/>
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"/>
11 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Proj4J"/>
12 <property name="plugin.early" value="true"/>
13
14 <!-- ** include targets that all plugins have in common ** -->
15 <import file="../build-common.xml"/>
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>
38
39</project>
Note: See TracBrowser for help on using the repository browser.