Skip to content

Commit e8c7196

Browse files
authored
Update dependencies to latest Java 8 compatible versions (#79)
- Update log4j to 2.22.1 - Update testng to 7.5.1 - Update jackson-databind to 2.16.1 - Update guice to 6.0.0 - Update year in LICENSE
1 parent c4f812c commit e8c7196

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2023 Aquality Automation
189+
Copyright 2024 Aquality Automation
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

pom.xml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<revision>3.0.0-SNAPSHOT</revision>
20+
<log4j.version>2.22.1</log4j.version>
2021
</properties>
2122

2223
<distributionManagement>
@@ -87,35 +88,34 @@
8788
<dependency>
8889
<groupId>org.apache.logging.log4j</groupId>
8990
<artifactId>log4j</artifactId>
90-
<version>2.19.0</version>
91+
<version>${log4j.version}</version>
9192
<type>pom</type>
9293
</dependency>
9394
<dependency>
9495
<groupId>org.apache.logging.log4j</groupId>
9596
<artifactId>log4j-api</artifactId>
96-
<version>2.19.0</version>
97+
<version>${log4j.version}</version>
98+
</dependency>
99+
<dependency>
100+
<groupId>org.apache.logging.log4j</groupId>
101+
<artifactId>log4j-core</artifactId>
102+
<version>${log4j.version}</version>
97103
</dependency>
98104
<dependency>
99105
<groupId>org.testng</groupId>
100106
<artifactId>testng</artifactId>
101-
<version>7.5</version>
107+
<version>7.5.1</version>
102108
<scope>test</scope>
103109
</dependency>
104110
<dependency>
105111
<groupId>com.google.inject</groupId>
106112
<artifactId>guice</artifactId>
107-
<version>5.1.0</version>
108-
<exclusions>
109-
<exclusion>
110-
<groupId>com.google.guava</groupId>
111-
<artifactId>guava</artifactId>
112-
</exclusion>
113-
</exclusions>
113+
<version>6.0.0</version>
114114
</dependency>
115115
<dependency>
116116
<groupId>com.fasterxml.jackson.core</groupId>
117117
<artifactId>jackson-databind</artifactId>
118-
<version>2.14.1</version>
118+
<version>2.16.1</version>
119119
</dependency>
120120
<dependency>
121121
<groupId>org.seleniumhq.selenium</groupId>
@@ -128,11 +128,6 @@
128128
<version>8.6.0</version>
129129
<scope>test</scope>
130130
</dependency>
131-
<dependency>
132-
<groupId>org.apache.logging.log4j</groupId>
133-
<artifactId>log4j-core</artifactId>
134-
<version>2.19.0</version>
135-
</dependency>
136131
</dependencies>
137132

138133
<build>

0 commit comments

Comments
 (0)