Changeset 26174 in osm for applications/editors/josm/plugins/public_transport
- Timestamp:
- 2011-06-25T19:02:31+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/public_transport
- Files:
-
- 31 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/build.xml
r26145 r26174 1 <?xml version="1.0" encoding=" UTF-8"?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <!-- 3 3 ** Usage … … 21 21 ** should not be necessary to change the following properties 22 22 --> 23 <property name="josm" 24 <property name="plugin.build.dir" 25 <property name="plugin.src.dir" 23 <property name="josm" location="${josm.basedir}/core/dist/josm-custom.jar"/> 24 <property name="plugin.build.dir" value="build"/> 25 <property name="plugin.src.dir" value="src"/> 26 26 <!-- this is the directory where the plugin jar is copied to --> 27 <property name="plugin.dist.dir" 27 <property name="plugin.dist.dir" value="${josm.basedir}/dist"/> 28 28 <property name="ant.build.javac.target" value="1.5"/> 29 <property name="plugin.dist.dir" value="${josm.basedir}/dist"/> 30 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 31 29 <property name="plugin.dist.dir" value="${josm.basedir}/dist"/> 30 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 32 31 <!-- 33 32 ********************************************************** … … 38 37 <mkdir dir="${plugin.build.dir}"/> 39 38 </target> 40 41 39 <!-- 42 40 ********************************************************** … … 51 49 </javac> 52 50 </target> 53 54 51 <!-- 55 52 ********************************************************** … … 65 62 <fileset dir="images"/> 66 63 </copy> 64 <copy todir="${plugin.build.dir}/data"> 65 <fileset dir="data"/> 66 </copy> 67 67 <copy todir="${plugin.build.dir}"> 68 68 <fileset dir="."> 69 <include name="README" 70 <include name="LICENSE" 69 <include name="README"/> 70 <include name="LICENSE"/> 71 71 </fileset> 72 72 </copy> 73 73 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 74 <!-- 74 <!-- 75 75 ************************************************ 76 76 ** configure these properties. Most of them will be copied to the plugins … … 82 82 <manifest> 83 83 <attribute name="Author" value="Roland M. Olbricht"/> 84 84 <attribute name="Plugin-Class" value="public_transport.PublicTransportPlugin"/> 85 85 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 86 86 <attribute name="Plugin-Description" value="This plugin simplifies the mapping and editing of public transport routes."/> … … 91 91 </jar> 92 92 </target> 93 94 93 <!-- 95 94 ********************************************************** … … 100 99 --> 101 100 <target name="revision"> 102 103 101 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 104 102 <env key="LANG" value="C"/> … … 110 108 <delete file="REVISION"/> 111 109 </target> 112 113 110 <!-- 114 111 ********************************************************** … … 120 117 <delete file="${plugin.jar}"/> 121 118 </target> 122 123 119 <!-- 124 120 **********************************************************
Note:
See TracChangeset
for help on using the changeset viewer.