Skip to content

Commit ce8cd1f

Browse files
authored
Merge pull request #90 from CyberSource/log4j-fix
Upgrading log4j2 to 2.15.0
2 parents 1e47b70 + 70e2c29 commit ce8cd1f

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
@@ -2,6 +2,12 @@
22

33
The CyberSource Java client provides convenient access to the [CyberSource REST API](https://developer.cybersource.com/api/reference/api-reference.html) from your Java application.
44

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

713
Java 1.8.

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -231,26 +231,26 @@
231231
<dependency>
232232
<groupId>org.apache.logging.log4j</groupId>
233233
<artifactId>log4j</artifactId>
234-
<version>2.13.3</version>
234+
<version>${log4j.version}</version>
235235
<type>pom</type>
236236
</dependency>
237237

238238
<dependency>
239239
<groupId>org.apache.logging.log4j</groupId>
240240
<artifactId>log4j-api</artifactId>
241-
<version>2.13.3</version>
241+
<version>${log4j.version}</version>
242242
</dependency>
243243

244244
<dependency>
245245
<groupId>org.apache.logging.log4j</groupId>
246246
<artifactId>log4j-core</artifactId>
247-
<version>2.13.3</version>
247+
<version>${log4j.version}</version>
248248
</dependency>
249249

250250
<dependency>
251251
<groupId>org.apache.logging.log4j</groupId>
252252
<artifactId>log4j-1.2-api</artifactId>
253-
<version>2.13.3</version>
253+
<version>${log4j.version}</version>
254254
</dependency>
255255

256256
<!-- test dependencies -->
@@ -265,7 +265,7 @@
265265
<dependency>
266266
<groupId>com.cybersource</groupId>
267267
<artifactId>AuthenticationSdk</artifactId>
268-
<version>0.0.18</version>
268+
<version>0.0.19</version>
269269
</dependency>
270270
</dependencies>
271271

@@ -281,5 +281,6 @@
281281
<maven-plugin-version>1.0.0</maven-plugin-version>
282282
<junit-version>4.13.2</junit-version>
283283
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
284+
<log4j.version>2.15.0</log4j.version>
284285
</properties>
285286
</project>

0 commit comments

Comments
 (0)