Changeset 31668 in osm for applications/editors/josm
- Timestamp:
- 2015-10-24T23:45:29+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 1 deleted
- 4 edited
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins
- Property svn:ignore
-
old new 1 1 rasterfilters/build 2 continuos-download
-
- Property svn:ignore
-
applications/editors/josm/plugins/apache-commons/.project
r31199 r31668 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <projectDescription> 3 <name>JOSM- commons-imaging</name>3 <name>JOSM-apache-commons</name> 4 4 <comment></comment> 5 5 <projects> -
applications/editors/josm/plugins/apache-commons/build.xml
r31199 r31668 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name=" commons-imaging" default="dist" basedir=".">2 <project name="apache-commons" default="dist" basedir="."> 3 3 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> … … 8 8 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins 9 9 --> 10 <property name="plugin.author" value="nokutu "/>11 <property name="plugin.class" value="org.openstreetmap.josm.plugins.commons. imaging.CommonsImagingPlugin"/>12 <property name="plugin.description" value="Provides Commons Imaging library. Not meant to be installed directly by users, but rather as a dependency for other plugins."/>10 <property name="plugin.author" value="nokutu; Don-vip"/> 11 <property name="plugin.class" value="org.openstreetmap.josm.plugins.commons.CommonsPlugin"/> 12 <property name="plugin.description" value="Provides Apache Commons library components. Not meant to be installed directly by users, but rather as a dependency for other plugins."/> 13 13 14 14 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/apache-commons/src/org/openstreetmap/josm/plugins/commons/CommonsPlugin.java
r31665 r31668 1 package org.openstreetmap.josm.plugins.commons .imaging;1 package org.openstreetmap.josm.plugins.commons; 2 2 3 3 import org.openstreetmap.josm.plugins.Plugin; 4 4 import org.openstreetmap.josm.plugins.PluginInformation; 5 5 6 public class Commons ImagingPlugin extends Plugin {6 public class CommonsPlugin extends Plugin { 7 7 8 8 /** 9 * Constructs a new {@code Commons ImagingPlugin}.9 * Constructs a new {@code CommonsPlugin}. 10 10 * @param info plugin information 11 11 */ 12 public Commons ImagingPlugin(PluginInformation info) {12 public CommonsPlugin(PluginInformation info) { 13 13 super(info); 14 14 } -
applications/editors/josm/plugins/build.xml
r31642 r31668 17 17 <ant target="dist" dir="utilsplugin2"/> 18 18 <ant target="dist" dir="log4j"/> 19 <ant target="dist" dir=" commons-imaging"/>19 <ant target="dist" dir="apache-commons"/> 20 20 <!-- order not important --> 21 21 <!-- to update, run $ ls -F | grep '/$' | tr -d '/' | grep -v '00_plugin_dir_template\|jna\|jts\|geotools\|utilsplugin2\|log4j\|commons-imaging' | sed 's/^/<ant target="dist" dir="/' | sed 's/$/"\/>/' --> … … 130 130 <ant target="clean" dir="canvec_helper"/> 131 131 <ant target="clean" dir="colorscheme"/> 132 <ant target="clean" dir=" commons-imaging"/>132 <ant target="clean" dir="apache-commons"/> 133 133 <ant target="clean" dir="conflation"/> 134 134 <ant target="clean" dir="ColumbusCSV"/>
Note:
See TracChangeset
for help on using the changeset viewer.