source: osm/applications/editors/josm/plugins/nearclick/build.xml@ 3996

Last change on this file since 3996 was 3789, checked in by ulf, 17 years ago

add a build.xml for the nearclick plugin

File size: 1.7 KB
Line 
1<project name="nearclick" default="build" basedir=".">
2
3 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
4 <property name="josm" location="../../core/dist/josm-custom.jar" />
5 <!--<property name="josm" location="../josm/josm-latest.jar" ></property>-->
6
7 <!-- target directory to place the plugin in -->
8 <!-- Windows has a different home directory scheme then unix/linux -->
9 <!-- I don't know an automatic way to find it with ant :-(, if you know, please fix -->
10 <property name="plugins" location="${user.home}/.josm/plugins" ></property>
11 <!--<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>-->
12
13 <!-- you should not need to modify anything below this! -->
14
15
16 <target name="init">
17 <mkdir dir="build"></mkdir>
18 <mkdir dir="dist"></mkdir>
19 </target>
20
21 <target name="compile" depends="init">
22 <javac srcdir="src" classpath="${josm}" destdir="build" debug="true">
23 <include name="**/*.java" />
24 </javac>
25 </target>
26
27 <target name="build" depends="compile">
28 <jar destfile="dist/nearclick.jar" basedir="build">
29 <manifest>
30 <attribute name="Plugin-Class" value="nearclick.NearClickPlugin" />
31 <attribute name="Plugin-Description" value="Simulates a click when you do a small and short drag. This is usefull for tablet pens, when you have problems just clicking the tablet without the mouse moving (general Java - tablet problem)." />
32 </manifest>
33 </jar>
34 </target>
35
36 <target name="clean">
37 <delete dir="build" />
38 <delete dir="dist" />
39 </target>
40
41 <target name="clean_install">
42 <delete file="${plugins}/nearclick.jar" />
43 </target>
44
45 <target name="install" depends="build">
46 <copy file="dist/nearclick.jar" todir="${plugins}"/>
47 </target>
48
49</project>
Note: See TracBrowser for help on using the repository browser.