Changeset 29854 in osm for applications/editors/josm/plugins/livegps
- Timestamp:
- 2013-08-21T03:47:16+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/livegps
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/livegps/build.xml ¶
r29771 r29854 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <!--3 ** This is the build file for the livegps plugin4 **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 your default plugin directory) run16 **17 ** > ant install18 **19 ** To build against the core in ../../core, create a correct manifest and deploy to20 ** SVN,21 ** set the properties commit.message and plugin.main.version22 ** and run23 ** > ant publish24 **25 **26 -->27 2 <project name="livegps" default="dist" basedir="."> 28 3 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 29 <property name="plugin.main.version" value="6 082"/>4 <property name="plugin.main.version" value="6162"/> 30 5 <!-- 31 6 ************************************************ … … 36 11 <property name="plugin.build.dir" value="build"/> 37 12 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 38 <property name="ant.build.javac.target" value="1. 5"/>13 <property name="ant.build.javac.target" value="1.6"/> 39 14 <target name="init"> 40 15 <mkdir dir="${plugin.build.dir}"/> -
TabularUnified applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java ¶
r29778 r29854 1 1 package livegps; 2 2 3 import static org.openstreetmap.josm.gui.help.HelpUtil.ht;4 import static org.openstreetmap.josm.tools.I18n.marktr;5 3 import static org.openstreetmap.josm.tools.I18n.tr; 6 4 … … 13 11 import javax.swing.JCheckBoxMenuItem; 14 12 import javax.swing.JMenu; 15 import javax.swing.JMenuItem;16 13 17 14 import org.openstreetmap.josm.Main;
Note:
See TracChangeset
for help on using the changeset viewer.