Skip to content

Commit 511ce51

Browse files
committed
Updated dependencies
- Removed unnecessary logging dependencies. - Added junit pom for version management so only 1 version needs to be updated.
1 parent dc179b0 commit 511ce51

1 file changed

Lines changed: 17 additions & 25 deletions

File tree

pom.xml

Lines changed: 17 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@
1616
<commons-lang3.version>3.17.0</commons-lang3.version>
1717
<lombok.version>1.18.38</lombok.version>
1818
<gson.version>2.13.1</gson.version>
19-
<jackson.version>2.19.0</jackson.version>
19+
<jackson.version>2.19.1</jackson.version>
2020
<reflections.version>0.10.2</reflections.version>
2121

2222
<log4j.version>2.24.3</log4j.version>
2323
<logback.version>1.5.18</logback.version>
2424
<slf4j.version>2.0.17</slf4j.version>
2525

26-
<junit.version>5.12.2</junit.version>
27-
<junit-runner.version>1.12.2</junit-runner.version>
26+
<junit.version>5.13.1</junit.version>
2827
<archunit.version>1.4.1</archunit.version>
29-
<dependency-check-maven.version>12.1.1</dependency-check-maven.version>
28+
<dependency-check-maven.version>12.1.3</dependency-check-maven.version>
3029
</properties>
3130

3231
<dependencyManagement>
@@ -38,6 +37,13 @@
3837
<type>pom</type>
3938
<scope>import</scope>
4039
</dependency>
40+
<dependency>
41+
<groupId>org.junit</groupId>
42+
<artifactId>junit-bom</artifactId>
43+
<version>${junit.version}</version>
44+
<type>pom</type>
45+
<scope>import</scope>
46+
</dependency>
4147
</dependencies>
4248
</dependencyManagement>
4349

@@ -87,25 +93,15 @@
8793
</dependency>
8894

8995
<!-- Logging -->
90-
<dependency>
91-
<groupId>org.apache.logging.log4j</groupId>
92-
<artifactId>log4j-api</artifactId>
93-
<version>${log4j.version}</version>
94-
</dependency>
95-
<dependency>
96-
<groupId>org.apache.logging.log4j</groupId>
97-
<artifactId>log4j-core</artifactId>
98-
<version>${log4j.version}</version>
99-
</dependency>
10096
<dependency>
10197
<groupId>ch.qos.logback</groupId>
10298
<artifactId>logback-classic</artifactId>
10399
<version>${logback.version}</version>
104100
</dependency>
105101
<dependency>
106-
<groupId>org.slf4j</groupId>
107-
<artifactId>log4j-over-slf4j</artifactId>
108-
<version>${slf4j.version}</version>
102+
<groupId>ch.qos.logback</groupId>
103+
<artifactId>logback-core</artifactId>
104+
<version>${logback.version}</version>
109105
</dependency>
110106
<dependency>
111107
<groupId>org.slf4j</groupId>
@@ -117,25 +113,21 @@
117113
<dependency>
118114
<groupId>org.junit.jupiter</groupId>
119115
<artifactId>junit-jupiter-api</artifactId>
120-
<version>${junit.version}</version>
121116
<scope>test</scope>
122117
</dependency>
123118
<dependency>
124119
<groupId>org.junit.jupiter</groupId>
125120
<artifactId>junit-jupiter-params</artifactId>
126-
<version>${junit.version}</version>
127121
<scope>test</scope>
128122
</dependency>
129123
<dependency>
130124
<groupId>org.junit.jupiter</groupId>
131125
<artifactId>junit-jupiter-engine</artifactId>
132-
<version>${junit.version}</version>
133126
<scope>test</scope>
134127
</dependency>
135128
<dependency>
136129
<groupId>org.junit.platform</groupId>
137130
<artifactId>junit-platform-runner</artifactId>
138-
<version>${junit-runner.version}</version>
139131
<scope>test</scope>
140132
</dependency>
141133
<dependency>
@@ -151,16 +143,16 @@
151143
<plugin>
152144
<groupId>org.apache.maven.plugins</groupId>
153145
<artifactId>maven-compiler-plugin</artifactId>
154-
<version>3.13.0</version>
146+
<version>3.14.0</version>
155147
<configuration>
156-
<release>21</release>
148+
<release>${maven.compiler.release}</release>
157149
</configuration>
158150
</plugin>
159151

160152
<plugin>
161153
<groupId>org.apache.maven.plugins</groupId>
162154
<artifactId>maven-surefire-plugin</artifactId>
163-
<version>3.5.2</version>
155+
<version>3.5.3</version>
164156
</plugin>
165157

166158
<plugin>
@@ -179,7 +171,7 @@
179171
<plugin>
180172
<groupId>org.jacoco</groupId>
181173
<artifactId>jacoco-maven-plugin</artifactId>
182-
<version>0.8.12</version>
174+
<version>0.8.13</version>
183175
<executions>
184176
<execution>
185177
<goals>

0 commit comments

Comments
 (0)