Skip to content

Commit 16c7b70

Browse files
committed
maven dependency updates
1 parent 846c716 commit 16c7b70

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<plugins>
3434
<plugin>
3535
<artifactId>maven-resources-plugin</artifactId>
36-
<version>3.3.0</version>
36+
<version>3.3.1</version>
3737
<executions>
3838
<execution>
3939
<id>copy-client-files</id>

data-service/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
</plugin>
104104
<plugin>
105105
<artifactId>maven-resources-plugin</artifactId>
106-
<version>3.3.0</version>
106+
<version>3.3.1</version>
107107
<executions>
108108
<execution>
109109
<id>copy-resources</id>
@@ -229,12 +229,12 @@
229229
<dependency>
230230
<groupId>org.slf4j</groupId>
231231
<artifactId>slf4j-api</artifactId>
232-
<version>2.0.6</version>
232+
<version>2.0.7</version>
233233
</dependency>
234234
<dependency>
235235
<groupId>ch.qos.logback</groupId>
236236
<artifactId>logback-classic</artifactId>
237-
<version>1.4.5</version>
237+
<version>1.4.6</version>
238238
</dependency>
239239
</dependencies>
240240
</project>

onejar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<name>PWM Password Self Service: Executable Server JAR</name>
1717

1818
<properties>
19-
<tomcat.version>9.0.72</tomcat.version>
19+
<tomcat.version>9.0.73</tomcat.version>
2020
</properties>
2121

2222
<build>

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
<dependency>
222222
<groupId>com.puppycrawl.tools</groupId>
223223
<artifactId>checkstyle</artifactId>
224-
<version>10.8.0</version>
224+
<version>10.9.3</version>
225225
</dependency>
226226
</dependencies>
227227
<executions>
@@ -300,7 +300,7 @@
300300
<plugin>
301301
<groupId>com.github.spotbugs</groupId>
302302
<artifactId>spotbugs-maven-plugin</artifactId>
303-
<version>4.7.3.2</version>
303+
<version>4.7.3.3</version>
304304
<dependencies>
305305
<dependency>
306306
<groupId>com.github.spotbugs</groupId>
@@ -363,7 +363,7 @@
363363
<plugin>
364364
<groupId>org.owasp</groupId>
365365
<artifactId>dependency-check-maven</artifactId>
366-
<version>8.1.2</version>
366+
<version>8.2.1</version>
367367
<executions>
368368
<execution>
369369
<goals>
@@ -390,7 +390,7 @@
390390
<plugin>
391391
<groupId>org.apache.maven.plugins</groupId>
392392
<artifactId>maven-surefire-plugin</artifactId>
393-
<version>3.0.0-M9</version>
393+
<version>3.0.0</version>
394394
<executions>
395395
<execution>
396396
<id>default-test</id>
@@ -460,13 +460,13 @@
460460
<dependency>
461461
<groupId>org.mockito</groupId>
462462
<artifactId>mockito-core</artifactId>
463-
<version>5.1.1</version>
463+
<version>5.2.0</version>
464464
<scope>test</scope>
465465
</dependency>
466466
<dependency>
467467
<groupId>com.github.tomakehurst</groupId>
468468
<artifactId>wiremock</artifactId>
469-
<version>3.0.0-beta-3</version>
469+
<version>3.0.0-beta-6</version>
470470
<scope>test</scope>
471471
</dependency>
472472
<dependency>

server/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<plugins>
4242
<plugin>
4343
<artifactId>maven-resources-plugin</artifactId>
44-
<version>3.3.0</version>
44+
<version>3.3.1</version>
4545
<executions>
4646
<execution>
4747
<id>replace-build-properties</id>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-deploy-plugin</artifactId>
101-
<version>3.1.0</version>
101+
<version>3.1.1</version>
102102
<executions>
103103
<execution>
104104
<phase>deploy</phase>
@@ -213,22 +213,22 @@
213213
<dependency>
214214
<groupId>org.graylog2</groupId>
215215
<artifactId>syslog4j</artifactId>
216-
<version>0.9.60</version>
216+
<version>0.9.61</version>
217217
</dependency>
218218
<dependency>
219219
<groupId>ch.qos.logback</groupId>
220220
<artifactId>logback-classic</artifactId>
221-
<version>1.4.5</version>
221+
<version>1.4.6</version>
222222
</dependency>
223223
<dependency>
224224
<groupId>org.slf4j</groupId>
225225
<artifactId>slf4j-api</artifactId>
226-
<version>2.0.6</version>
226+
<version>2.0.7</version>
227227
</dependency>
228228
<dependency>
229229
<groupId>org.slf4j</groupId>
230230
<artifactId>log4j-over-slf4j</artifactId>
231-
<version>2.0.6</version>
231+
<version>2.0.7</version>
232232
</dependency>
233233
<dependency>
234234
<groupId>org.jasig.cas.client</groupId>
@@ -280,7 +280,7 @@
280280
<dependency>
281281
<groupId>com.github.ben-manes.caffeine</groupId>
282282
<artifactId>caffeine</artifactId>
283-
<version>3.1.4</version>
283+
<version>3.1.5</version>
284284
</dependency>
285285
<dependency>
286286
<groupId>com.nulab-inc</groupId>
@@ -292,12 +292,12 @@
292292
<!-- added newer dependency of xodus-environment -->
293293
<groupId>org.apache.commons</groupId>
294294
<artifactId>commons-compress</artifactId>
295-
<version>1.22</version>
295+
<version>1.23.0</version>
296296
</dependency>
297297
<dependency>
298298
<groupId>org.apache.tomcat.embed</groupId>
299299
<artifactId>tomcat-embed-core</artifactId>
300-
<version>9.0.72</version>
300+
<version>9.0.73</version>
301301
<scope>test</scope>
302302
</dependency>
303303
</dependencies>

webapp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
<plugin>
139139
<groupId>org.apache.maven.plugins</groupId>
140140
<artifactId>maven-deploy-plugin</artifactId>
141-
<version>3.1.0</version>
141+
<version>3.1.1</version>
142142
<executions>
143143
<execution>
144144
<phase>deploy</phase>

0 commit comments

Comments
 (0)