Changeset 13313 in osm for applications/editors/josm/plugins/remotecontrol/build.xml
- Timestamp:
- 2009-01-22T17:07:55+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/remotecontrol/build.xml
r12780 r13313 1 1 <project name="remotecontrol" default="dist" basedir="."> 2 <!-- compilation properties --> 3 <property name="josm.build.dir" value="../../core"/> 4 <property name="josm.home.dir" value="${user.home}/.josm"/> 5 <property name="josm" location="../../core/dist/josm-custom.jar" /> 6 <property name="plugin.build.dir" value="build"/> 7 <property name="plugin.dist.dir" value="../../dist"/> 8 <property name="plugin.name" value="${ant.project.name}"/> 9 <property name="plugin.jar" value="../../dist/${plugin.name}.jar"/> 2 <property name="josm" location="../../core/dist/josm-custom.jar" /> 3 <property name="plugin.dist.dir" value="../../dist"/> 4 <property name="plugin.build.dir" value="build"/> 5 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 10 6 <property name="ant.build.javac.target" value="1.5"/> 11 7 <target name="init"> … … 14 10 <target name="compile" depends="init"> 15 11 <echo message="creating ${plugin.jar}"/> 16 <javac srcdir="src" classpath="${josm}" destdir="build" debug="true"> 12 <javac srcdir="src" classpath="${josm}" debug="true" destdir="build"> 13 <compilerarg value="-Xlint:deprecation"/> 14 <compilerarg value="-Xlint:unchecked"/> 17 15 <include name="**/*.java" /> 18 16 </javac> 19 17 </target> 20 18 <target name="dist" depends="compile"> 21 <copy todir="${plugin.build.dir}/images"> 22 <fileset dir="images"/> 19 <copy todir="${plugin.build.dir}/images" > 20 <fileset dir="images" /> 23 21 </copy> 24 22 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> … … 33 31 <manifest> 34 32 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.remotecontrol.RemoteControlPlugin"/> 33 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 34 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 35 35 <attribute name="Plugin-Description" value="A plugin allowing other applications to send commands to JOSM." /> 36 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>37 36 <attribute name="Plugin-Mainversion" value="1180"/> 38 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>39 37 <attribute name="Author" value="Frederik Ramm <frederik@remote.org>"/> 40 38 </manifest> … … 45 43 <delete file="${plugin.jar}" /> 46 44 </target> 47 <target name="install" depends="dist">48 <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins"/>49 </target>50 <target name="test" depends="install">51 <java jar="${josm}" fork="true"/>52 </target>53 45 </project>
Note:
See TracChangeset
for help on using the changeset viewer.
