Changeset 30416 in osm for applications/editors/josm/plugins/infomode
- Timestamp:
- 2014-04-26T04:34:53+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/infomode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/infomode/build.xml
r29854 r30416 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <!--3 ** This is a template build file for a JOSM 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="InfoMode" default="dist" basedir="."> 31 3 <!-- enter the SVN commit message --> 32 4 <property name="commit.message" value="InfoMode : for shortcurt parser"/> 33 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value=" 5035"/>6 <property name="plugin.main.version" value="7001"/> 35 7 <!-- should not be necessary to change the following properties --> 36 8 <property name="josm" location="../../core/dist/josm-custom.jar"/> … … 39 11 <!-- this is the directory where the plugin jar is copied to --> 40 12 <property name="plugin.dist.dir" value="../../dist"/> 41 <property name="ant.build.javac.target" value="1. 6"/>13 <property name="ant.build.javac.target" value="1.7"/> 42 14 <property name="plugin.dist.dir" value="../../dist"/> 43 15 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> -
applications/editors/josm/plugins/infomode/nbproject/project.xml
r26389 r30416 75 75 <classpath mode="compile">../../core/src</classpath> 76 76 <built-to>../../dist/InfoMode.jar</built-to> 77 <source-level>1. 6</source-level>77 <source-level>1.7</source-level> 78 78 </compilation-unit> 79 79 </java-data>
Note:
See TracChangeset
for help on using the changeset viewer.