Skip to content

Commit d93e0ce

Browse files
committed
Updated logging framework
1 parent 5c1c69a commit d93e0ce

22 files changed

Lines changed: 322 additions & 176 deletions

.classpath

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,40 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src/main/java"/>
4-
<classpathentry kind="src" path="resources"/>
5-
<classpathentry kind="src" path="src/test/java"/>
6-
<classpathentry kind="lib" path="lib/commons-logging-1.1.1.jar"/>
7-
<classpathentry kind="lib" path="lib/httpclient-4.5.3.jar"/>
8-
<classpathentry kind="lib" path="lib/httpcore-4.4.6.jar"/>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
920
<classpathentry kind="lib" path="lib/junit-4.8.2.jar"/>
1021
<classpathentry kind="lib" path="lib/log4j-1.2.16.jar"/>
11-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
22+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
23+
<attributes>
24+
<attribute name="maven.pomderived" value="true"/>
25+
</attributes>
26+
</classpathentry>
1227
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
1328
<classpathentry kind="lib" path="lib/hamcrest-library-1.3.jar"/>
1429
<classpathentry kind="lib" path="lib/jmock-2.6.0.jar"/>
1530
<classpathentry kind="lib" path="lib/gson-2.3.1.jar"/>
31+
<classpathentry kind="lib" path="lib/commons-logging-1.2.jar"/>
32+
<classpathentry kind="lib" path="lib/httpclient-4.5.12.jar"/>
33+
<classpathentry kind="lib" path="lib/httpcore-4.4.13.jar"/>
34+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
35+
<attributes>
36+
<attribute name="maven.pomderived" value="true"/>
37+
</attributes>
38+
</classpathentry>
1639
<classpathentry kind="output" path="target/classes"/>
1740
</classpath>

.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1521
<nature>org.eclipse.jdt.core.javanature</nature>
1622
</natures>
1723
</projectDescription>

lib/commons-logging-1.1.1.jar

-59.4 KB
Binary file not shown.

lib/commons-logging-1.2.jar

60.4 KB
Binary file not shown.

lib/httpclient-4.5.12.jar

760 KB
Binary file not shown.

lib/httpclient-4.5.3.jar

-730 KB
Binary file not shown.

lib/httpcore-4.4.13.jar

321 KB
Binary file not shown.

lib/httpcore-4.4.6.jar

-316 KB
Binary file not shown.

pom.xml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,32 @@
5858
<scope>compile</scope>
5959
</dependency>
6060
<dependency>
61-
<groupId>log4j</groupId>
61+
<groupId>org.apache.logging.log4j</groupId>
6262
<artifactId>log4j</artifactId>
63-
<version>1.2.16</version>
64-
<scope>compile</scope>
63+
<version>2.13.3</version>
64+
<type>pom</type>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.apache.logging.log4j</groupId>
68+
<artifactId>log4j-jcl</artifactId>
69+
<version>2.13.3</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.apache.logging.log4j</groupId>
73+
<artifactId>log4j-api</artifactId>
74+
<version>2.13.3</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.apache.logging.log4j</groupId>
78+
<artifactId>log4j-core</artifactId>
79+
<version>2.13.3</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.apache.logging.log4j</groupId>
83+
<artifactId>log4j-1.2-api</artifactId>
84+
<version>2.13.3</version>
6585
</dependency>
86+
<!-- Log4j Dependencies -->
6687
<dependency>
6788
<groupId>org.jmock</groupId>
6889
<artifactId>jmock</artifactId>

resources/log4j.properties

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)