source: osm/applications/editors/josm/plugins/osmarender/build.xml@ 3769

Last change on this file since 3769 was 1471, checked in by imi, 18 years ago

updated josm translation for romanian and french and fixed landsat to comply to the latest josm plugin system

File size: 1.0 KB
Line 
1<project name="osmarender" default="install" basedir=".">
2
3 <property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" />
4 <property name="osmarender" location="../../../osmarender" />
5
6
7 <target name="compile">
8 <mkdir dir="bin"></mkdir>
9 <mkdir dir="dist"></mkdir>
10 <javac srcdir="src" debug="true" classpath="${josm}" destdir="bin">
11 <include name="**/*.java" />
12 </javac>
13 </target>
14
15 <target name="build">
16 <copy todir="bin">
17 <fileset dir="${osmarender}">
18 <include name="osmarender.xsl"/>
19 <include name="osm-map-features.xml"/>
20 </fileset>
21 </copy>
22 <jar destfile="${user.home}/.josm/plugins/osmarender.jar" basedir="bin">
23 <manifest>
24 <attribute name="Plugin-Class" value="OsmarenderPlugin" />
25 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image" />
26 </manifest>
27 </jar>
28 </target>
29
30 <target name="clean">
31 <delete dir="bin" />
32 <delete dir="dist" />
33 </target>
34
35 <target name="install" depends="compile,build" />
36
37</project>
Note: See TracBrowser for help on using the repository browser.