Skip to content

Commit 487462d

Browse files
authored
Merge pull request #169 from AuthorizeNet/may-2020
Security issues fix
2 parents 94492cf + fb6d6aa commit 487462d

21 files changed

+251
-177
lines changed

.classpath

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,39 @@
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"/>
10-
<classpathentry kind="lib" path="lib/log4j-1.2.16.jar"/>
11-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
21+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
22+
<attributes>
23+
<attribute name="maven.pomderived" value="true"/>
24+
</attributes>
25+
</classpathentry>
1226
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
1327
<classpathentry kind="lib" path="lib/hamcrest-library-1.3.jar"/>
1428
<classpathentry kind="lib" path="lib/jmock-2.6.0.jar"/>
1529
<classpathentry kind="lib" path="lib/gson-2.3.1.jar"/>
30+
<classpathentry kind="lib" path="lib/commons-logging-1.2.jar"/>
31+
<classpathentry kind="lib" path="lib/httpclient-4.5.12.jar"/>
32+
<classpathentry kind="lib" path="lib/httpcore-4.4.13.jar"/>
33+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
34+
<attributes>
35+
<attribute name="maven.pomderived" value="true"/>
36+
</attributes>
37+
</classpathentry>
1638
<classpathentry kind="output" path="target/classes"/>
1739
</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: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,34 @@
5757
<version>4.4.6</version>
5858
<scope>compile</scope>
5959
</dependency>
60+
<!-- Log4j Dependencies -->
6061
<dependency>
61-
<groupId>log4j</groupId>
62+
<groupId>org.apache.logging.log4j</groupId>
6263
<artifactId>log4j</artifactId>
63-
<version>1.2.16</version>
64-
<scope>compile</scope>
64+
<version>2.13.3</version>
65+
<type>pom</type>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.apache.logging.log4j</groupId>
69+
<artifactId>log4j-jcl</artifactId>
70+
<version>2.13.3</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.apache.logging.log4j</groupId>
74+
<artifactId>log4j-api</artifactId>
75+
<version>2.13.3</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.apache.logging.log4j</groupId>
79+
<artifactId>log4j-core</artifactId>
80+
<version>2.13.3</version>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.apache.logging.log4j</groupId>
84+
<artifactId>log4j-1.2-api</artifactId>
85+
<version>2.13.3</version>
6586
</dependency>
87+
<!-- Log4j Dependencies -->
6688
<dependency>
6789
<groupId>org.jmock</groupId>
6890
<artifactId>jmock</artifactId>
@@ -151,7 +173,7 @@
151173
<include>**/*.*</include>
152174
</includes>
153175
<excludes>
154-
<exclude>log4j.properties</exclude>
176+
<exclude>log4j2.xml</exclude>
155177
</excludes>
156178
</resource>
157179
</resources>

resources/log4j.properties

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

0 commit comments

Comments
 (0)