Skip to content

Commit d8a2698

Browse files
committed
(chore) log4j.version in property
1 parent 934c38e commit d8a2698

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pom.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
<module.jacoco.skip>true</module.jacoco.skip>
5858
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
5959
<skipTests>false</skipTests>
60+
<log4j.version>2.13.2</log4j.version>
61+
<slf4j.version>1.7.29</slf4j.version>
6062
</properties>
6163

6264
<dependencies>
@@ -73,24 +75,24 @@
7375
<dependency>
7476
<groupId>org.slf4j</groupId>
7577
<artifactId>slf4j-api</artifactId>
76-
<version>1.7.29</version>
78+
<version>${slf4j.version}</version>
7779
</dependency>
7880
<dependency>
7981
<groupId>org.apache.logging.log4j</groupId>
8082
<artifactId>log4j-slf4j-impl</artifactId>
81-
<version>2.13.2</version>
83+
<version>${log4j.version}</version>
8284
<scope>test</scope>
8385
</dependency>
8486
<dependency>
8587
<groupId>org.apache.logging.log4j</groupId>
8688
<artifactId>log4j-api</artifactId>
87-
<version>2.13.2</version>
89+
<version>${log4j.version}</version>
8890
<scope>test</scope>
8991
</dependency>
9092
<dependency>
9193
<groupId>org.apache.logging.log4j</groupId>
9294
<artifactId>log4j-core</artifactId>
93-
<version>2.13.2</version>
95+
<version>${log4j.version}</version>
9496
<scope>test</scope>
9597
</dependency>
9698
<dependency>

0 commit comments

Comments
 (0)