Changeset 26174 in osm for applications/editors/josm/plugins/ColumbusCSV
- Timestamp:
- 2011-06-25T19:02:31+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/ColumbusCSV
- Files:
-
- 31 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ColumbusCSV/build.xml
r25192 r26174 1 <?xml version="1.0" encoding=" UTF-8"?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <!-- 3 3 ** This is a template build file for a JOSM plugin. … … 26 26 ** should not be necessary to change the following properties 27 27 --> 28 <property name="josm" 29 30 <property name="plugin.build.dir" 31 <property name="plugin.src.dir" 28 <property name="josm" location="../../core/dist/josm-custom.jar"/> 29 <property name="josm_stable" location="../../core/dist/3529/josm-tested.jar"/> 30 <property name="plugin.build.dir" value="build"/> 31 <property name="plugin.src.dir" value="src"/> 32 32 <!-- this is the directory where the plugin jar is copied to --> 33 <property name="plugin.dist.dir" 33 <property name="plugin.dist.dir" value="../../dist"/> 34 34 <property name="ant.build.javac.target" value="1.5"/> 35 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 36 35 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 37 36 <!-- 38 37 ********************************************************** … … 41 40 --> 42 41 <target name="init"> 43 <mkdir dir="${plugin.build.dir}"/> 42 <mkdir dir="${plugin.build.dir}"/> 44 43 </target> 45 46 44 <!-- 47 45 ********************************************************** … … 56 54 </javac> 57 55 </target> 58 59 56 <!-- 60 57 ********************************************************** … … 63 60 --> 64 61 <target name="dist" depends="compile,revision"> 65 62 <mkdir dir="${plugin.dist.dir}"/> 66 63 <echo message="creating ${plugin.jar} ... "/> 67 64 <copy todir="${plugin.build.dir}/resources"> … … 71 68 <fileset dir="images"/> 72 69 </copy> 70 <copy todir="${plugin.build.dir}/data"> 71 <fileset dir="data"/> 72 </copy> 73 73 <copy todir="${plugin.build.dir}"> 74 74 <fileset dir="."> 75 <include name="README" 76 <include name="LICENSE" 75 <include name="README"/> 76 <include name="LICENSE"/> 77 77 </fileset> 78 78 </copy> 79 79 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 80 <!-- 80 <!-- 81 81 ************************************************ 82 82 ** configure these properties. Most of them will be copied to the plugins … … 91 91 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 92 92 <attribute name="Plugin-Description" value="Imports proprietary CSV files of the Columbus/Visiontac V-900 GPS logger into a GPX layer."/> 93 93 <attribute name="de_Plugin-Description" value="Importiert die CSV-Dateien des Columbus/Visiontac V-900 GPS Loggers in GPX-Daten."/> 94 94 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ColumbusCSV"/> 95 95 <attribute name="Plugin-Mainversion" value="3835"/> 96 96 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 97 97 <attribute name="Plugin-Icon" value="images/colcsvicon.png"/> 98 98 </manifest> 99 </jar> 99 </jar> 100 100 </target> 101 102 101 <!-- 103 102 ********************************************************** … … 108 107 --> 109 108 <target name="revision"> 110 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 111 <env key="LANG" value="C"/> 112 <arg value="info"/> 113 <arg value="--xml"/> 114 <arg value="build.xml"/> 115 </exec> 116 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 117 <echo message="Revision: ${version.entry.commit.revision}"/> 118 <delete file="REVISION"/> 119 </target> 120 109 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 110 <env key="LANG" value="C"/> 111 <arg value="info"/> 112 <arg value="--xml"/> 113 <arg value="build.xml"/> 114 </exec> 115 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 116 <echo message="Revision: ${version.entry.commit.revision}"/> 117 <delete file="REVISION"/> 118 </target> 121 119 <!-- 122 120 ********************************************************** … … 128 126 <delete file="${plugin.jar}"/> 129 127 </target> 130 131 128 <!-- 132 129 **********************************************************
Note:
See TracChangeset
for help on using the changeset viewer.