Rev | Line | |
---|
[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 -->
|
---|
[30416] | 6 | <property name="plugin.main.version" value="7001"/>
|
---|
[30417] | 7 |
|
---|
| 8 | <property name="plugin.author" value="Josh Doe <josh@joshdoe.com>"/>
|
---|
| 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"/>
|
---|
[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.