Changes between Version 47 and Version 48 of DevelopersGuide/DevelopingPlugins


Ignore:
Timestamp:
Nov 18, 2010 8:34:41 PM (3 years ago)
Author:
Olivier Croquette <ocroquette@…>
Comment:

Added clear info on how to build

Legend:

Unmodified
Added
Removed
Modified
  • DevelopersGuide/DevelopingPlugins

    v47 v48  
    1717 * Also note, that JOSM is compiled into Java5 compatible class files, so if you are using Java6 or Java7, specify "-target 1.5" as parameter to javac or your plugin will not be usable with the official josm builds. 
    1818 * If you need other OSM resources you can check out the complete osm - trunk: {{{svn co http://svn.openstreetmap.org/}}} 
     19 
     20== Building == 
     21Call ant to build the plugin : 
     22{{{ 
     23cd josm/plugins/yourpluginname 
     24ant clean 
     25ant dist 
     26}}} 
    1927 
    2028== JOSM plugins ==