Skip to content

Commit 01382bb

Browse files
committed
Upgrading log4j2 to 2.15.0
1 parent 28bd284 commit 01382bb

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
[![Code Climate](https://codeclimate.com/github/AuthorizeNet/sdk-java/badges/gpa.svg)](https://codeclimate.com/github/AuthorizeNet/sdk-java)
55
[![Maven Central](https://img.shields.io/maven-central/v/net.authorize/anet-java-sdk.svg?style=flat)](http://mvnrepository.com/artifact/net.authorize/anet-java-sdk)
66

7+
## IMPORTANT NOTE:
8+
9+
***Due to restrictions on Log4j2 v2.15.0, masking/hiding of sensitive data will not work for the time being.***
10+
11+
***We will work to include it again in future versions.***
12+
713

814
## Requirements
915
* JDK 1.5.0 to JDK 1.8.0

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,28 +61,28 @@
6161
<dependency>
6262
<groupId>org.apache.logging.log4j</groupId>
6363
<artifactId>log4j</artifactId>
64-
<version>2.13.3</version>
64+
<version>${log4j.version}</version>
6565
<type>pom</type>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.apache.logging.log4j</groupId>
6969
<artifactId>log4j-jcl</artifactId>
70-
<version>2.13.3</version>
70+
<version>${log4j.version}</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>org.apache.logging.log4j</groupId>
7474
<artifactId>log4j-api</artifactId>
75-
<version>2.13.3</version>
75+
<version>${log4j.version}</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.apache.logging.log4j</groupId>
7979
<artifactId>log4j-core</artifactId>
80-
<version>2.13.3</version>
80+
<version>${log4j.version}</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.apache.logging.log4j</groupId>
8484
<artifactId>log4j-1.2-api</artifactId>
85-
<version>2.13.3</version>
85+
<version>${log4j.version}</version>
8686
</dependency>
8787
<!-- Log4j Dependencies -->
8888
<dependency>
@@ -117,6 +117,7 @@
117117
<maven.compile.target>1.5</maven.compile.target>
118118
<maven.compile.optimize>true</maven.compile.optimize>
119119
<maven.compile.deprecation>true</maven.compile.deprecation>
120+
<log4j.version>2.15.0</log4j.version>
120121
</properties>
121122
<build>
122123
<plugins>

0 commit comments

Comments
 (0)