Changes between Version 87 and Version 88 of DevelopersGuide/DevelopingPlugins
- Timestamp:
- 2018-10-20T18:23:03+02:00 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopersGuide/DevelopingPlugins
v87 v88 195 195 196 196 === A plugin is deployed as a single jar === 197 A JOSM plugin is deployed as a single jar file. The jar files name must be equal to the plugin name, i.e. {{{routing4all.jar}}}. 197 A JOSM plugin is deployed as a single **Java 8** jar file. The jar files name must be equal to the plugin name, i.e. {{{routing4all.jar}}}. 198 198 199 199 The jar file must include … … 241 241 242 242 == Publishing a plugin == 243 The plugin list a user sees ([/plugin here]) is automatically generated at regular intervals (currently about 10 minutes) from plugin JAR files that are located in [osm:source:/applications/editors/josm/dist/ josm/dist] on the OSM.org SVN repository (referred to as "internal" plugins) and from links that are embedded in the [[wiki:Plugins]] page (referred to as "external" plugins). Each method has advantages and disadvantages. 243 The plugin list a user sees ([/plugin here]) is automatically generated at regular intervals (currently about 10 minutes) from plugin JAR files (**built with Java 8**) that are located in [osm:source:/applications/editors/josm/dist/ josm/dist] on the OSM.org SVN repository (referred to as "internal" plugins) and from links that are embedded in the [[wiki:Plugins]] page (referred to as "external" plugins). Each method has advantages and disadvantages. 244 244 245 245 Advantages of hosting code externally: