source: osm/applications/editors/josm/plugins/ywms/build.xml@ 11245

Last change on this file since 11245 was 7287, checked in by joerg, 17 years ago

josm/plugins/*/build.xml: add echo to identify which compile failes

File size: 2.3 KB
RevLine 
[5153]1<project name="ywms" default="dist" basedir=".">
[2264]2
[5153]3 <!-- compilation properties -->
4 <property name="josm.build.dir" value="../../core"/>
5 <property name="josm.home.dir" value="${user.home}/.josm"/>
6 <property name="josm" location="../../core/dist/josm-custom.jar" />
7 <property name="plugin.build.dir" value="build"/>
[6100]8 <property name="plugin.dist.dir" value="../../dist"/>
[5153]9 <property name="plugin.name" value="${ant.project.name}"/>
[6100]10 <property name="plugin.jar" value="../../dist/${plugin.name}.jar"/>
[5197]11
12 <property name="ant.build.javac.target" value="1.5"/>
[5147]13
14 <target name="init">
[5153]15 <mkdir dir="${plugin.build.dir}"/>
[5147]16 </target>
[2264]17
[5147]18 <target name="compile" depends="init">
[7287]19 <echo message="creating ${plugin.jar}"/>
[5147]20 <javac srcdir="src" classpath="${josm}" destdir="build" debug="true">
21 <include name="**/*.java" />
22 </javac>
23 </target>
[2264]24
[5153]25 <target name="dist" depends="compile">
26 <copy todir="${plugin.build.dir}/resources">
[5147]27 <fileset dir="resources"/>
28 </copy>
[5153]29 <copy todir="${plugin.build.dir}/images">
[5147]30 <fileset dir="images"/>
31 </copy>
32 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
33 <env key="LANG" value="C"/>
34 <arg value="info"/>
35 <arg value="--xml"/>
36 <arg value="."/>
37 </exec>
38 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
39 <delete file="REVISION"/>
[5153]40 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
[5147]41 <manifest>
42 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.ywms.YWMSPlugin"/>
43 <attribute name="Plugin-Description" value="A WMS server for Yahoo imagery based on Firefox"/>
44 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
45 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
46 <attribute name="Author" value="Francisco R. Santos &lt;frsantos@gmail.com>"/>
47 </manifest>
48 </jar>
49 </target>
[2264]50
[5147]51 <target name="clean">
[5153]52 <delete dir="${plugin.build.dir}" />
53 <delete file="${plugin.jar}" />
[5147]54 </target>
[5153]55
56 <target name="install" depends="dist">
57 <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins"/>
[5147]58 </target>
[2264]59
[5147]60 <target name="test" depends="install">
61 <java jar="${josm}" fork="true"/>
62 </target>
[2264]63
64</project>
Note: See TracBrowser for help on using the repository browser.