Changeset 20482 in osm for applications/editors/josm/plugins/wayselector/build.xml
- Timestamp:
- 2010-03-14T21:29:25+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/wayselector
- Files:
-
- 1 edited
- 1 copied
-
. (copied) (copied from applications/editors/josm/plugins/00_plugin_dir_template )
-
build.xml (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wayselector/build.xml
r20480 r20482 28 28 ** 29 29 --> 30 <project name=" myPluginName" default="dist" basedir=".">30 <project name="wayselector" default="dist" basedir="."> 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value=" Commit message" />33 <property name="commit.message" value="Initial release of the Way Selector plugin" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value="" /> 35 <property name="plugin.main.version" value="3095" /> 36 36 37 37 … … 60 60 <!-- 61 61 ********************************************************** 62 ** compile - comp lies the source tree62 ** compile - compiles the source tree 63 63 ********************************************************** 64 64 --> 65 65 <target name="compile" depends="init"> 66 66 <echo message="compiling sources for ${plugin.jar} ... "/> 67 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}"> 67 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false"> 68 68 <compilerarg value="-Xlint:deprecation"/> 69 69 <compilerarg value="-Xlint:unchecked"/> … … 100 100 --> 101 101 <manifest> 102 <attribute name="Author" value=" ..."/>103 <attribute name="Plugin-Class" value=" ..."/>102 <attribute name="Author" value="Marko Mäkelä"/> 103 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.wayselector.WaySelectorPlugin"/> 104 104 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 105 <attribute name="Plugin-Description" value=" ..."/>106 <attribute name="Plugin-Link" value=" ..."/>105 <attribute name="Plugin-Description" value="Select a sequence of non-branching connected ways"/> 106 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WaySelectorPlugin"/> 107 107 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 108 108 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> … … 157 157 158 158 <!-- 159 ************************** Publishing the plugin *********************************** 159 ************************** Publishing the plugin *********************************** 160 160 --> 161 161 <!-- 162 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 162 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 163 163 ** property ${coreversion.info.entry.revision} 164 164 ** … … 209 209 210 210 <!-- 211 ** commits the plugin.jar 211 ** commits the plugin.jar 212 212 --> 213 213 <target name="commit-dist"> 214 214 <echo> 215 215 ***** Properties of published ${plugin.jar} ***** 216 Commit message : '${commit.message}' 216 Commit message : '${commit.message}' 217 217 Plugin-Mainversion: ${plugin.main.version} 218 218 JOSM build version: ${coreversion.info.entry.revision} 219 219 Plugin-Version : ${version.entry.commit.revision} 220 ***** / Properties of published ${plugin.jar} ***** 221 220 ***** / Properties of published ${plugin.jar} ***** 221 222 222 Now commiting ${plugin.jar} ... 223 223 </echo> 224 <exec append="true" output="svn.log" executable="svn" failifexecutionfails=" false">224 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true"> 225 225 <env key="LANG" value="C"/> 226 226 <arg value="-m '${commit.message}'"/>
Note:
See TracChangeset
for help on using the changeset viewer.
