Changeset 3080 in osm for applications/editors/josm
- Timestamp:
- 2007-06-01T10:40:48+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/build.xml
r2936 r3080 3 3 <property name="josm.build.dir" value="../JOSM"/> 4 4 <property name="josm.home.dir" value="${user.home}/.josm"/> 5 <property name="livegpsplugin.jar" value="${josm.home.dir}/plugins/livegps.jar"/> 5 6 <property name="plugin.build.dir" value="bin"/> 6 7 … … 22 23 <jar destfile="${ant.project.name}.jar" basedir="${plugin.build.dir}"> 23 24 <manifest> 24 <attribute name="Plugin-Class" value="at.dallermassl.josm.plugin.surveyor.SurveyorPlugin" /> 25 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions." /> 25 <attribute name="Plugin-Class" value="at.dallermassl.josm.plugin.surveyor.SurveyorPlugin" /> 26 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions." /> 27 <attribute name="Plugin-Dependencies" value="livegps" /> 28 <attribute name="Plugin-Stage" value="60" /> 26 29 </manifest> 27 30 </jar> … … 29 32 30 33 <target name="compile" depends="init"> 31 <mkdir dir=" bin"/>34 <mkdir dir="${plugin.build.dir}"/> 32 35 <javac srcdir="src" destdir="${plugin.build.dir}" debug="true" source="1.5" target="1.5"> 33 36 <classpath> … … 36 39 <include name="**/*.jar"/> 37 40 </fileset> 41 <pathelement location="${livegpsplugin.jar}"/> 38 42 </classpath> 39 43 </javac> … … 44 48 </target> 45 49 46 47 </target>50 <target name="init"> 51 </target> 48 52 49 53 <target name="clean">
Note:
See TracChangeset
for help on using the changeset viewer.