source: osm/applications/editors/josm/plugins/dataimport/build.xml@ 17374

Last change on this file since 17374 was 16382, checked in by stoecker, 16 years ago

tcxplugin moved into dataimport - patch by dmuecke

File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** see README.template
8**
9** Usage
10** =====
11** To build it run
12**
13** > ant dist
14**
15** To install the generated plugin locally (in you default plugin directory) run
16**
17** > ant install
18**
19** The generated plugin jar is not automatically available in JOSMs plugin configuration
20** dialog. You have to check it in first.
21**
22-->
23<project name="dataimport" default="dist" basedir=".">
24 <!--
25 ************************************************
26 ** should not be necessary to change the following properties
27 -->
28 <property name="josm" location="../../core/dist/josm-custom.jar"/>
29 <property name="plugin.build.dir" value="build"/>
30 <property name="plugin.src.dir" value="src"/>
31 <!-- this is the directory where the plugin jar is copied to -->
32 <property name="plugin.dist.dir" value="../../dist"/>
33 <property name="ant.build.javac.target" value="1.5"/>
34 <property name="plugin.dist.dir" value="../../dist"/>
35 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
36
37 <!--
38 **********************************************************
39 ** init - initializes the build
40 **********************************************************
41 -->
42 <target name="init">
43 <mkdir dir="${plugin.build.dir}"/>
44 </target>
45
46 <!--
47 **********************************************************
48 ** compile - complies the source tree
49 **********************************************************
50 -->
51 <target name="compile" depends="init">
52 <echo message="compiling sources for ${plugin.jar} ... "/>
53 <javac srcdir="src" debug="true" destdir="${plugin.build.dir}">
54 <compilerarg value="-Xlint:deprecation"/>
55 <compilerarg value="-Xlint:unchecked"/>
56 <classpath>
57 <pathelement location="${josm}"/>
58 <fileset dir="lib">
59 <include name="**/*.jar"/>
60 </fileset>
61 </classpath>
62 </javac>
63 </target>
64
65 <!--
66 **********************************************************
67 ** dist - creates the plugin jar
68 **********************************************************
69 -->
70 <target name="dist" depends="compile,revision">
71 <echo message="creating ${ant.project.name}.jar ... "/>
72 <copy todir="${plugin.build.dir}">
73 <fileset dir=".">
74 <include name="README" />
75 <include name="LICENSE" />
76 </fileset>
77 </copy>
78 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
79 <!--
80 ************************************************
81 ** configure these properties. Most of them will be copied to the plugins
82 ** manifest file. Property values will also show up in the list available
83 ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
84 **
85 ************************************************
86 -->
87 <zipfileset src="lib/jsr173-1.0_api.jar" includes="**/*.class"/>
88 <zipfileset src="lib/jaxb-api.jar" includes="**/*.class"/>
89 <zipfileset src="lib/jaxb-api.jar" includes="**/*.properties"/>
90
91 <zipfileset src="lib/jaxb-impl.jar" includes="**/*.class"/>
92
93 <manifest>
94 <attribute name="Author" value="Dieter Muecke"/>
95 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.DataImport"/>
96 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
97 <attribute name="Plugin-Description" value="Allows to import various file formats into JOSM directly."/>
98 <attribute name="Plugin-Mainversion" value="1700"/>
99 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
100 </manifest>
101 </jar>
102 </target>
103
104 <!--
105 **********************************************************
106 ** revision - extracts the current revision number for the
107 ** file build.number and stores it in the XML property
108 ** version.*
109 **********************************************************
110 -->
111 <target name="revision">
112
113 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
114 <env key="LANG" value="C"/>
115 <arg value="info"/>
116 <arg value="--xml"/>
117 <arg value="."/>
118 </exec>
119 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
120 <delete file="REVISION"/>
121 </target>
122
123 <!--
124 **********************************************************
125 ** clean - clean up the build environment
126 **********************************************************
127 -->
128 <target name="clean">
129 <delete dir="${plugin.build.dir}"/>
130 <delete file="${plugin.jar}"/>
131 </target>
132
133 <!--
134 **********************************************************
135 ** install - install the plugin in your local JOSM installation
136 **********************************************************
137 -->
138 <target name="install" depends="dist">
139 <property environment="env"/>
140 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
141 <and>
142 <os family="windows"/>
143 </and>
144 </condition>
145 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
146 </target>
147</project>
Note: See TracBrowser for help on using the repository browser.