Ignore:
Timestamp:
2015-10-24T23:45:29+02:00 (9 years ago)
Author:
donvip
Message:

rename commons-imaging to apache-commons in order to provide other Apache Commons libraries in a single plugin

Location:
applications/editors/josm/plugins
Files:
1 deleted
3 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins

    • Property svn:ignore
      •  

        old new  
        11rasterfilters/build
         2continuos-download
  • applications/editors/josm/plugins/apache-commons/.project

    r31199 r31668  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<projectDescription>
    3         <name>JOSM-commons-imaging</name>
     3        <name>JOSM-apache-commons</name>
    44        <comment></comment>
    55        <projects>
  • applications/editors/josm/plugins/apache-commons/build.xml

    r31199 r31668  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <project name="commons-imaging" default="dist" basedir=".">
     2<project name="apache-commons" default="dist" basedir=".">
    33
    44    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     
    88         See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    99    -->
    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."/>
    1313   
    1414        <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;
     1package org.openstreetmap.josm.plugins.commons;
    22
    33import org.openstreetmap.josm.plugins.Plugin;
    44import org.openstreetmap.josm.plugins.PluginInformation;
    55
    6 public class CommonsImagingPlugin extends Plugin {
     6public class CommonsPlugin extends Plugin {
    77
    88    /**
    9      * Constructs a new {@code CommonsImagingPlugin}.
     9     * Constructs a new {@code CommonsPlugin}.
    1010     * @param info plugin information
    1111     */
    12     public CommonsImagingPlugin(PluginInformation info) {
     12    public CommonsPlugin(PluginInformation info) {
    1313        super(info);
    1414    }
Note: See TracChangeset for help on using the changeset viewer.