Changeset 29004 in osm for applications


Ignore:
Timestamp:
2012-11-27T20:14:34+01:00 (12 years ago)
Author:
stoecker
Message:

add help target

Location:
applications/editors/josm/plugins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/00_plugin_dir_template/README.template

    r22835 r29004  
    2424See build.xml in this directory and update the plugin specific properties in the
    2525configuration section.
    26  
     26
     27To get an command overview run
     28    > ant help
     29
     30To build the plugin run
     31    > ant  dist
     32
     33To install the generated plugin locally (in you default plugin directory) run
     34    > ant  install
     35
     36The generated plugin jar is not automatically available in JOSMs plugin configuration
     37dialog. You have to check it in first.
     38
     39Use the ant target 'publish' to check in the plugin and make it available to other
     40JOSM users:
     41    set the properties commit.message and plugin.main.version
     42and run
     43    > ant  publish
    2744
    2845Maintaining versions
  • applications/editors/josm/plugins/00_plugin_dir_template/build.xml

    r28990 r29004  
    55** Maintaining versions
    66** ====================
    7 ** see README.template
     7** See README.template
    88**
    99** Usage
    1010** =====
    11 ** To build it run
    12 **
    13 **    > ant  dist
    14 **
    15 ** To install the generated plugin locally (in you default plugin directory) run
    16 **
    17 **    > ant  install
    18 **
    19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration
    20 ** 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 other
    23 ** JOSM users:
    24 **    set the properties commit.message and plugin.main.version
    25 ** and run
    26 **    > ant  publish
    27 **
     11** Call "ant help" to get possible build targets.
    2812**
    2913-->
  • applications/editors/josm/plugins/OsmInspectorPlugin/build.xml

    r28992 r29004  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <!--
    3 ** This is a template build file for a JOSM  plugin.
    4 **
    5 ** Maintaining versions
    6 ** ====================
    7 ** see README.template
    8 **
    9 ** Usage
    10 ** =====
    11 ** To build it run
    12 **
    13 **    > ant  dist
    14 **
    15 ** To install the generated plugin locally (in you default plugin directory) run
    16 **
    17 **    > ant  install
    18 **
    19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration
    20 ** 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 other
    23 ** JOSM users:
    24 **    set the properties commit.message and plugin.main.version
    25 ** and run
    26 **    > ant  publish
    27 **
    28 **
    29 -->
    302<project name="OsmInspector" default="dist" basedir=".">
    313
     
    357    <property name="plugin.main.version" value="4394"/>
    368
    37     <!-- Configure these properties (replace "..." accordingly).
    38          See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    39     -->
    409    <property name="plugin.author" value="Nikhil Shirahatti"/>
    4110    <property name="plugin.class" value="org.openstreetmap.josm.plugins.osminspector.OsmInspectorPlugin"/>
  • applications/editors/josm/plugins/build-common.xml

    r28996 r29004  
    279279        </java>
    280280    </target>
     281    <!--
     282    ** shows a help text
     283    -->
     284    <target name="help">
     285        <echo>
     286    You can use following targets:
     287    * dist        This default target builds the plugin jar file
     288    * clean       Cleanup automaticall created files
     289    * publish     Checkin source code, build jar and checkin plugin jar
     290                  (requires proper entry for SVN commit message!)
     291    * install     Install the plugin in current system
     292    * runjosm     Install plugin and start josm
     293    * profilejosm Install plugin and start josm in profiling mode
     294   
     295    There are other targets, which usually should not be called manually.
     296        </echo>
     297    </target>
    281298</project>
    282299
Note: See TracChangeset for help on using the changeset viewer.