Ignore:
Timestamp:
2015-06-07T16:54:32+02:00 (9 years ago)
Author:
donvip
Message:

[josm_log4j] migrate to Log4j 2.3

Location:
applications/editors/josm/plugins/log4j
Files:
5 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/log4j/.classpath

    r30416 r31229  
    44        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
    55        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    6         <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.17.jar"/>
     6        <classpathentry exported="true" kind="lib" path="lib/log4j-1.2-api-2.3.jar"/>
     7        <classpathentry exported="true" kind="lib" path="lib/log4j-api-2.3.jar"/>
     8        <classpathentry kind="lib" path="lib/log4j-core-2.3.jar"/>
    79        <classpathentry kind="output" path="bin"/>
    810</classpath>
  • applications/editors/josm/plugins/log4j/.project

    r28963 r31229  
    1313        </buildSpec>
    1414        <natures>
     15                <nature>org.sonar.ide.eclipse.core.sonarNature</nature>
    1516                <nature>org.eclipse.jdt.core.javanature</nature>
    1617        </natures>
  • applications/editors/josm/plugins/log4j/src/org/openstreetmap/josm/plugins/log4j/Log4jPlugin.java

    r28963 r31229  
    1 //License: GPL. Copyright 2012 Don-vip
     1// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.plugins.log4j;
    33
     
    55import org.openstreetmap.josm.plugins.PluginInformation;
    66
     7/**
     8 * Log4j plugin brings the Log4j API to other plugins.
     9 * @version 2.3
     10 */
    711public class Log4jPlugin extends Plugin {
     12
     13    /**
     14     * Constructs a new {@code Log4jPlugin}.
     15     * @param info plugin info
     16     */
    817    public Log4jPlugin(PluginInformation info) {
    918        super(info);
Note: See TracChangeset for help on using the changeset viewer.