Changeset 29854 in osm for applications/editors/josm/plugins/openvisible
- Timestamp:
- 2013-08-21T03:47:16+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/openvisible
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openvisible/build.xml
r29778 r29854 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <!--3 ** This is the build file for the openvisible plugin.4 **5 ** Maintaining versions6 ** ====================7 ** see README.template8 **9 ** Usage10 ** =====11 ** To build it run12 **13 ** > ant dist14 **15 ** To install the generated plugin locally (in you default plugin directory) run16 **17 ** > ant install18 **19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration20 ** dialog. You have to check it in first.21 **22 ** Use the ant target 'publish' to check in the plugin and make it available to other23 ** JOSM users:24 ** set the properties commit.message and plugin.main.version25 ** and run26 ** > ant publish27 **28 **29 -->30 2 <project name="openvisible" default="dist" basedir="."> 31 3 <!-- enter the SVN commit message --> 32 4 <property name="commit.message" value="Changed the constructor signature of the plugin main class; updated build.xml"/> 33 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="6 082"/>6 <property name="plugin.main.version" value="6162"/> 35 7 <!-- 36 8 ************************************************ … … 41 13 <property name="plugin.build.dir" value="build"/> 42 14 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 43 <property name="ant.build.javac.target" value="1. 5"/>15 <property name="ant.build.javac.target" value="1.6"/> 44 16 <target name="init"> 45 17 <mkdir dir="${plugin.build.dir}"/>
Note:
See TracChangeset
for help on using the changeset viewer.