Skip to content

Commit 4607b50

Browse files
committed
maven depdendency updates
1 parent f507a78 commit 4607b50

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
</plugin>
5555
<plugin>
5656
<artifactId>maven-clean-plugin</artifactId>
57-
<version>3.2.0</version>
57+
<version>3.3.1</version>
5858
<executions>
5959
<execution>
6060
<id>remove-client-files</id>
@@ -90,7 +90,7 @@
9090
<plugin>
9191
<groupId>com.github.eirslett</groupId>
9292
<artifactId>frontend-maven-plugin</artifactId>
93-
<version>1.12.1</version>
93+
<version>1.13.3</version>
9494
<configuration>
9595
<nodeVersion>${node.version}</nodeVersion>
9696
<npmVersion>${npm.version}</npmVersion>

data-service/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<!-- This plugin will set properties values using dependency information -->
3737
<groupId>org.apache.maven.plugins</groupId>
3838
<artifactId>maven-dependency-plugin</artifactId>
39-
<version>3.5.0</version>
39+
<version>3.6.0</version>
4040
<executions>
4141
<execution>
4242
<goals>
@@ -48,7 +48,7 @@
4848
<plugin>
4949
<groupId>org.apache.maven.plugins</groupId>
5050
<artifactId>maven-war-plugin</artifactId>
51-
<version>3.3.2</version>
51+
<version>3.4.0</version>
5252
<configuration>
5353
<archiveClasses>true</archiveClasses>
5454
<packagingExcludes>WEB-INF/classes</packagingExcludes>
@@ -96,7 +96,7 @@
9696
</plugin>
9797
<plugin>
9898
<artifactId>maven-clean-plugin</artifactId>
99-
<version>3.2.0</version>
99+
<version>3.3.1</version>
100100
</plugin>
101101
</plugins>
102102
</build>

docker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<plugin>
3535
<groupId>com.google.cloud.tools</groupId>
3636
<artifactId>jib-maven-plugin</artifactId>
37-
<version>3.3.1</version>
37+
<version>3.3.2</version>
3838
<executions>
3939
<execution>
4040
<id>make-docker-image</id>
@@ -45,7 +45,7 @@
4545
<configuration>
4646
<skip>${skipDocker}</skip>
4747
<from>
48-
<image>eclipse-temurin:11-jre@sha256:02ac33534ba06c9dcf4ca153ef6bb13cbfdb37ce2e61f2868fd944c3a4ec2d99</image>
48+
<image>eclipse-temurin:11-jre@sha256:4802f11f9522ce2bb0dfa7f083b1410ec4c1ef702282c4db20a7c5a1329dee12</image>
4949
</from>
5050
<to>
5151
<image>${dockerImageTag}</image>

onejar/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<name>PWM Password Self Service: Executable Server JAR</name>
1818

1919
<properties>
20-
<tomcat.version>9.0.74</tomcat.version>
20+
<tomcat.version>9.0.76</tomcat.version>
2121
</properties>
2222

2323
<build>
@@ -41,7 +41,7 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-assembly-plugin</artifactId>
44-
<version>3.5.0</version>
44+
<version>3.6.0</version>
4545
<configuration>
4646
<appendAssemblyId>false</appendAssemblyId>
4747
<descriptors>

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<build.revision>0</build.revision> <!-- default in case not set on command line -->
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3333

34-
<pwm.minimum.maven.version>3.5</pwm.minimum.maven.version>
34+
<pwm.minimum.maven.version>3.6</pwm.minimum.maven.version>
3535
<timestamp.iso>${maven.build.timestamp}</timestamp.iso>
3636
<maven.compiler.source>11</maven.compiler.source>
3737
<maven.compiler.target>11</maven.compiler.target>
@@ -182,7 +182,7 @@
182182
<plugin>
183183
<groupId>org.apache.maven.plugins</groupId>
184184
<artifactId>maven-source-plugin</artifactId>
185-
<version>3.2.1</version>
185+
<version>3.3.0</version>
186186
<executions>
187187
<execution>
188188
<goals>
@@ -255,12 +255,12 @@
255255
<plugin>
256256
<groupId>org.apache.maven.plugins</groupId>
257257
<artifactId>maven-checkstyle-plugin</artifactId>
258-
<version>3.2.2</version>
258+
<version>3.3.0</version>
259259
<dependencies>
260260
<dependency>
261261
<groupId>com.puppycrawl.tools</groupId>
262262
<artifactId>checkstyle</artifactId>
263-
<version>10.10.0</version>
263+
<version>10.12.1</version>
264264
</dependency>
265265
</dependencies>
266266
<executions>
@@ -336,7 +336,7 @@
336336
<plugin>
337337
<groupId>com.github.spotbugs</groupId>
338338
<artifactId>spotbugs-maven-plugin</artifactId>
339-
<version>4.7.3.4</version>
339+
<version>4.7.3.5</version>
340340
<dependencies>
341341
<dependency>
342342
<groupId>com.github.spotbugs</groupId>
@@ -389,7 +389,7 @@
389389
<plugin>
390390
<groupId>org.owasp</groupId>
391391
<artifactId>dependency-check-maven</artifactId>
392-
<version>8.2.1</version>
392+
<version>8.3.1</version>
393393
<executions>
394394
<execution>
395395
<goals>
@@ -434,7 +434,7 @@
434434
<plugin>
435435
<groupId>org.apache.maven.plugins</groupId>
436436
<artifactId>maven-dependency-plugin</artifactId>
437-
<version>3.5.0</version>
437+
<version>3.6.0</version>
438438
</plugin>
439439
</plugins>
440440
</build>
@@ -444,7 +444,7 @@
444444
<dependency>
445445
<groupId>org.projectlombok</groupId>
446446
<artifactId>lombok</artifactId>
447-
<version>1.18.26</version>
447+
<version>1.18.28</version>
448448
<scope>provided</scope>
449449
</dependency>
450450
<dependency>
@@ -464,7 +464,7 @@
464464
<dependency>
465465
<groupId>org.mockito</groupId>
466466
<artifactId>mockito-core</artifactId>
467-
<version>5.3.1</version>
467+
<version>5.4.0</version>
468468
<scope>test</scope>
469469
</dependency>
470470
<dependency>

rest-test-service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<plugin>
3030
<groupId>org.apache.maven.plugins</groupId>
3131
<artifactId>maven-war-plugin</artifactId>
32-
<version>3.3.2</version>
32+
<version>3.4.0</version>
3333
<configuration>
3434
<archiveClasses>true</archiveClasses>
3535
<packagingExcludes>WEB-INF/classes</packagingExcludes>
@@ -85,7 +85,7 @@
8585
<dependency>
8686
<groupId>commons-io</groupId>
8787
<artifactId>commons-io</artifactId>
88-
<version>2.11.0</version>
88+
<version>2.13.0</version>
8989
</dependency>
9090
<!-- / library dependencies -->
9191
</dependencies>

server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-surefire-plugin</artifactId>
45-
<version>3.0.0</version>
45+
<version>3.1.2</version>
4646
<executions>
4747
<execution>
4848
<id>default-test</id>
@@ -319,7 +319,7 @@
319319
<dependency>
320320
<groupId>org.webjars</groupId>
321321
<artifactId>webjars-locator-core</artifactId>
322-
<version>0.52</version>
322+
<version>0.53</version>
323323
</dependency>
324324
<dependency>
325325
<groupId>com.github.ben-manes.caffeine</groupId>

webapp/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-assembly-plugin</artifactId>
45-
<version>3.5.0</version>
45+
<version>3.6.0</version>
4646
<configuration>
4747
<descriptors>
4848
<descriptor>src/build/assembly/release-bundle.xml</descriptor>
@@ -69,7 +69,7 @@
6969
<plugin>
7070
<groupId>org.apache.maven.plugins</groupId>
7171
<artifactId>maven-assembly-plugin</artifactId>
72-
<version>3.5.0</version>
72+
<version>3.6.0</version>
7373
<executions>
7474
<execution>
7575
<id>make-ldif-schema-zip</id>
@@ -104,7 +104,7 @@
104104
<plugin>
105105
<groupId>org.apache.maven.plugins</groupId>
106106
<artifactId>maven-war-plugin</artifactId>
107-
<version>3.3.2</version>
107+
<version>3.4.0</version>
108108
<configuration>
109109
<archiveClasses>false</archiveClasses>
110110
<packagingExcludes>**/*.jsp</packagingExcludes>

0 commit comments

Comments
 (0)