Changeset 26174 in osm for applications/editors/josm/plugins/namemanager
- Timestamp:
- 2011-06-25T19:02:31+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/namemanager
- Files:
-
- 31 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/namemanager/build.xml
r25594 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. … … 29 29 --> 30 30 <project name="namemanager" default="dist" basedir="."> 31 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value="..." /> 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value="3966" /> 36 37 38 <!-- 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="..."/> 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="3966"/> 35 <!-- 39 36 ************************************************ 40 37 ** should not be necessary to change the following properties 41 38 --> 42 <property name="josm" location="../../core/dist/josm-custom.jar"/> 43 <property name="plugin.build.dir" value="build"/> 44 <property name="plugin.src.dir" value="src"/> 45 <!-- this is the directory where the plugin jar is copied to --> 46 <property name="plugin.dist.dir" value="../../dist"/> 47 <property name="ant.build.javac.target" value="1.5"/> 48 <property name="plugin.dist.dir" value="../../dist"/> 49 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 50 51 <!-- 39 <property name="josm" location="../../core/dist/josm-custom.jar"/> 40 <property name="plugin.build.dir" value="build"/> 41 <property name="plugin.src.dir" value="src"/> 42 <!-- this is the directory where the plugin jar is copied to --> 43 <property name="plugin.dist.dir" value="../../dist"/> 44 <property name="ant.build.javac.target" value="1.5"/> 45 <property name="plugin.dist.dir" value="../../dist"/> 46 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 47 <!-- 52 48 ********************************************************** 53 49 ** init - initializes the build 54 50 ********************************************************** 55 51 --> 56 <target name="init"> 57 <mkdir dir="${plugin.build.dir}"/> 58 </target> 59 60 <!-- 52 <target name="init"> 53 <mkdir dir="${plugin.build.dir}"/> 54 </target> 55 <!-- 61 56 ********************************************************** 62 57 ** compile - complies the source tree 63 58 ********************************************************** 64 59 --> 65 <target name="compile" depends="init"> 66 <echo message="compiling sources for ${plugin.jar} ... "/> 67 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}"> 68 <compilerarg value="-Xlint:deprecation"/> 69 <compilerarg value="-Xlint:unchecked"/> 70 </javac> 71 </target> 72 73 <!-- 60 <target name="compile" depends="init"> 61 <echo message="compiling sources for ${plugin.jar} ... "/> 62 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}"> 63 <compilerarg value="-Xlint:deprecation"/> 64 <compilerarg value="-Xlint:unchecked"/> 65 </javac> 66 </target> 67 <!-- 74 68 ********************************************************** 75 69 ** dist - creates the plugin jar 76 70 ********************************************************** 77 71 --> 78 <target name="dist" depends="compile,revision"> 79 <echo message="creating ${ant.project.name}.jar ... "/> 80 <copy todir="${plugin.build.dir}/resources"> 81 <fileset dir="resources" /> 82 </copy> 83 <copy todir="${plugin.build.dir}/images"> 84 <fileset dir="images"/> 85 </copy> 86 <copy todir="${plugin.build.dir}"> 87 <fileset dir="."> 88 <include name="README" /> 89 <include name="LICENSE" /> 90 </fileset> 91 </copy> 92 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 93 <!-- 72 <target name="dist" depends="compile,revision"> 73 <echo message="creating ${ant.project.name}.jar ... "/> 74 <copy todir="${plugin.build.dir}/resources"> 75 <fileset dir="resources"/> 76 </copy> 77 <copy todir="${plugin.build.dir}/images"> 78 <fileset dir="images"/> 79 </copy> 80 <copy todir="${plugin.build.dir}/data"> 81 <fileset dir="data"/> 82 </copy> 83 <copy todir="${plugin.build.dir}"> 84 <fileset dir="."> 85 <include name="README"/> 86 <include name="LICENSE"/> 87 </fileset> 88 </copy> 89 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 90 <!-- 94 91 ************************************************ 95 92 ** configure these properties. Most of them will be copied to the plugins … … 99 96 ************************************************ 100 97 --> 101 <manifest> 102 <attribute name="Author" value="Rafal Jachowicz: rjachow@gmail.com"/> 103 <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.namemanager.NameManagerMain" /> 104 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.namemanager.NameManagerPlugin" /> 105 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 106 <attribute name="Plugin-Description" value="Allows to attribute tags to all objects in any selected area at once" /> 107 <attribute name="pl_Plugin-Description" value="Pozwala na dodawanie, edycję i usuwanie tagów znajdujących się we wskazanym obszarze na raz" /> 108 <!-- <attribute name="Plugin-Icon" value="..."/>--> 109 <!-- <attribute name="Plugin-Link" value="..."/>--> 110 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 111 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 112 </manifest> 113 </jar> 114 </target> 115 116 <!-- 98 <manifest> 99 <attribute name="Author" value="Rafal Jachowicz: rjachow@gmail.com"/> 100 <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.namemanager.NameManagerMain"/> 101 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.namemanager.NameManagerPlugin"/> 102 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 103 <attribute name="Plugin-Description" value="Allows to attribute tags to all objects in any selected area at once"/> 104 <attribute name="pl_Plugin-Description" value="Pozwala na dodawanie, edycję i usuwanie tagów znajdujących się we wskazanym obszarze na raz"/> 105 <!-- <attribute name="Plugin-Icon" value="..."/>--> 106 <!-- <attribute name="Plugin-Link" value="..."/>--> 107 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 108 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 109 </manifest> 110 </jar> 111 </target> 112 <!-- 117 113 ********************************************************** 118 114 ** revision - extracts the current revision number for the … … 121 117 ********************************************************** 122 118 --> 123 <target name="revision"> 124 125 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 126 <env key="LANG" value="C"/> 127 <arg value="info"/> 128 <arg value="--xml"/> 129 <arg value="."/> 130 </exec> 131 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 132 <delete file="REVISION"/> 133 </target> 134 135 <!-- 119 <target name="revision"> 120 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 121 <env key="LANG" value="C"/> 122 <arg value="info"/> 123 <arg value="--xml"/> 124 <arg value="."/> 125 </exec> 126 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 127 <delete file="REVISION"/> 128 </target> 129 <!-- 136 130 ********************************************************** 137 131 ** clean - clean up the build environment 138 132 ********************************************************** 139 133 --> 140 <target name="clean"> 141 <delete dir="${plugin.build.dir}"/> 142 <delete file="${plugin.jar}"/> 143 </target> 144 145 <!-- 134 <target name="clean"> 135 <delete dir="${plugin.build.dir}"/> 136 <delete file="${plugin.jar}"/> 137 </target> 138 <!-- 146 139 ********************************************************** 147 140 ** install - install the plugin in your local JOSM installation 148 141 ********************************************************** 149 142 --> 150 <target name="install" depends="dist"> 151 <property environment="env"/> 152 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins"> 153 <and> 154 <os family="windows"/> 155 </and> 156 </condition> 157 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/> 158 </target> 159 160 161 <!-- 162 ************************** Publishing the plugin *********************************** 163 --> 164 <!-- 165 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 166 ** property ${coreversion.info.entry.revision} 167 ** 168 --> 169 <target name="core-info"> 170 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false"> 171 <env key="LANG" value="C"/> 172 <arg value="info"/> 173 <arg value="--xml"/> 174 <arg value="../../core"/> 175 </exec> 176 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/> 177 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo> 178 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo> 179 <delete file="core.info.xml" /> 180 </target> 181 182 <!-- 183 ** commits the source tree for this plugin 184 --> 185 <target name="commit-current"> 186 <echo>Commiting the plugin source with message '${commit.message}' ...</echo> 187 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 188 <env key="LANG" value="C"/> 189 <arg value="commit"/> 190 <arg value="-m '${commit.message}'"/> 191 <arg value="."/> 192 </exec> 193 </target> 194 195 <!-- 196 ** updates (svn up) the source tree for this plugin 197 --> 198 <target name="update-current"> 199 <echo>Updating plugin source ...</echo> 200 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 201 <env key="LANG" value="C"/> 202 <arg value="up"/> 203 <arg value="."/> 204 </exec> 205 <echo>Updating ${plugin.jar} ...</echo> 206 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 207 <env key="LANG" value="C"/> 208 <arg value="up"/> 209 <arg value="../dist/${plugin.jar}"/> 210 </exec> 211 </target> 212 213 <!-- 214 ** commits the plugin.jar 215 --> 216 <target name="commit-dist"> 217 <echo> 218 ***** Properties of published ${plugin.jar} ***** 219 Commit message : '${commit.message}' 220 Plugin-Mainversion: ${plugin.main.version} 221 JOSM build version: ${coreversion.info.entry.revision} 222 Plugin-Version : ${version.entry.commit.revision} 223 ***** / Properties of published ${plugin.jar} ***** 224 225 Now commiting ${plugin.jar} ... 226 </echo> 227 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 228 <env key="LANG" value="C"/> 229 <arg value="-m '${commit.message}'"/> 230 <arg value="commit"/> 231 <arg value="${plugin.jar}"/> 232 </exec> 233 </target> 234 235 <!-- ** make sure svn is present as a command line tool ** --> 236 <target name="ensure-svn-present"> 237 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code"> 238 <env key="LANG" value="C" /> 239 <arg value="--version" /> 240 </exec> 241 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system."> 242 <!-- return code not set at all? Most likely svn isn't installed --> 243 <condition> 244 <not> 245 <isset property="svn.exit.code" /> 246 </not> 247 </condition> 248 </fail> 249 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system."> 250 <!-- error code from SVN? Most likely svn is not what we are looking on this system --> 251 <condition> 252 <isfailure code="${svn.exit.code}" /> 253 </condition> 254 </fail> 255 </target> 256 257 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist"> 258 </target> 143 <target name="install" depends="dist"> 144 <property environment="env"/> 145 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins"> 146 <and> 147 <os family="windows"/> 148 </and> 149 </condition> 150 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/> 151 </target> 152 <!-- 153 ************************** Publishing the plugin *********************************** 154 --> 155 <!-- 156 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 157 ** property ${coreversion.info.entry.revision} 158 ** 159 --> 160 <target name="core-info"> 161 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false"> 162 <env key="LANG" value="C"/> 163 <arg value="info"/> 164 <arg value="--xml"/> 165 <arg value="../../core"/> 166 </exec> 167 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/> 168 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo> 169 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo> 170 <delete file="core.info.xml"/> 171 </target> 172 <!-- 173 ** commits the source tree for this plugin 174 --> 175 <target name="commit-current"> 176 <echo>Commiting the plugin source with message '${commit.message}' ...</echo> 177 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 178 <env key="LANG" value="C"/> 179 <arg value="commit"/> 180 <arg value="-m '${commit.message}'"/> 181 <arg value="."/> 182 </exec> 183 </target> 184 <!-- 185 ** updates (svn up) the source tree for this plugin 186 --> 187 <target name="update-current"> 188 <echo>Updating plugin source ...</echo> 189 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 190 <env key="LANG" value="C"/> 191 <arg value="up"/> 192 <arg value="."/> 193 </exec> 194 <echo>Updating ${plugin.jar} ...</echo> 195 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 196 <env key="LANG" value="C"/> 197 <arg value="up"/> 198 <arg value="../dist/${plugin.jar}"/> 199 </exec> 200 </target> 201 <!-- 202 ** commits the plugin.jar 203 --> 204 <target name="commit-dist"> 205 <echo> 206 ***** Properties of published ${plugin.jar} ***** 207 Commit message : '${commit.message}' 208 Plugin-Mainversion: ${plugin.main.version} 209 JOSM build version: ${coreversion.info.entry.revision} 210 Plugin-Version : ${version.entry.commit.revision} 211 ***** / Properties of published ${plugin.jar} ***** 212 213 Now commiting ${plugin.jar} ... 214 </echo> 215 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false"> 216 <env key="LANG" value="C"/> 217 <arg value="-m '${commit.message}'"/> 218 <arg value="commit"/> 219 <arg value="${plugin.jar}"/> 220 </exec> 221 </target> 222 <!-- ** make sure svn is present as a command line tool ** --> 223 <target name="ensure-svn-present"> 224 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code"> 225 <env key="LANG" value="C"/> 226 <arg value="--version"/> 227 </exec> 228 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system."> 229 <!-- return code not set at all? Most likely svn isn't installed --> 230 <condition> 231 <not> 232 <isset property="svn.exit.code"/> 233 </not> 234 </condition> 235 </fail> 236 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system."> 237 <!-- error code from SVN? Most likely svn is not what we are looking on this system --> 238 <condition> 239 <isfailure code="${svn.exit.code}"/> 240 </condition> 241 </fail> 242 </target> 243 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist"> 244 </target> 259 245 </project>
Note:
See TracChangeset
for help on using the changeset viewer.