[14427] | 1 | This is the SVN repository for JOSM plugins. JOSM plugins are extensions of the OSM editor JOSM,
|
---|
[34095] | 2 | see https://josm.openstreetmap.de/.
|
---|
[14427] | 3 |
|
---|
| 4 | This repository includes the source and the current builds for each plugin:
|
---|
| 5 |
|
---|
| 6 | * the source is maintained in the respective sub directories, i.e. 'wmsplugin' for the wmsplugin
|
---|
| 7 | * the current builds are available in '../dist'
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | FAQ
|
---|
| 11 | ===
|
---|
| 12 | * How can I check in my own plugin?
|
---|
| 13 |
|
---|
[35544] | 14 | - You need an account for the plugin subversion repository, see
|
---|
| 15 | https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins#ManagingaplugininpluginSVN
|
---|
[14427] | 16 |
|
---|
[35544] | 17 | - Make sure to check out the tree https://josm.openstreetmap.de/osmsvn/applications/editors/josm/
|
---|
| 18 | svn checkout https://josm.openstreetmap.de/osmsvn/applications/editors/josm/
|
---|
[14427] | 19 |
|
---|
[34095] | 20 | This will also check out the JOSM source from https://josm.openstreetmap.de/svn.
|
---|
[14427] | 21 |
|
---|
| 22 | Note that the build environment is not complete if you check out
|
---|
[35544] | 23 | https://josm.openstreetmap.de/osmsvn/applications/editors/josm/plugins/ only.
|
---|
[14427] | 24 |
|
---|
| 25 | - Create your own plugin directory. You may create a copy of the template directory
|
---|
| 26 | according to '00_plugin_dir_template'.
|
---|
| 27 |
|
---|
| 28 | * How can I build my plugin?
|
---|
| 29 |
|
---|
| 30 | - Update build.xml in your plugin directory and run 'ant dist'
|
---|
| 31 |
|
---|
| 32 | - You may also add your plugin to 'plugins/build.xml'
|
---|
| 33 |
|
---|
| 34 | <target name="dist" depends="compile">
|
---|
| 35 | ....
|
---|
| 36 | <ant antfile="build.xml" target="dist" dir="YourPluginDir"/>
|
---|
| 37 | </target>
|
---|
| 38 |
|
---|
| 39 | <target name="clean">
|
---|
| 40 | ....
|
---|
| 41 | <ant antfile="build.xml" target="clean" dir="YourPluginDir"/>
|
---|
| 42 | </target>
|
---|
| 43 |
|
---|
| 44 |
|
---|
| 45 | * How can I make my plugin available to other JOSM users?
|
---|
| 46 |
|
---|
| 47 | - The manifest of your plugin jar has to include the required meta information,
|
---|
[34095] | 48 | see https://josm.openstreetmap.de/wiki/DevelopingPlugins.
|
---|
[14427] | 49 | 'build.xml' copied from '00_plugin_dir_template' will create a compliant manifest
|
---|
| 50 | file for your plugin.
|
---|
| 51 |
|
---|
| 52 | - Check in your plugin jar into 'dist'. You have to do it manually.
|
---|
| 53 | There is no automatic build process. See also '00_plugin_dir_template/REAME'.
|
---|