Skip to content

Commit f742ba9

Browse files
committed
dependency updates
1 parent 0bfb180 commit f742ba9

File tree

9 files changed

+37
-18
lines changed

9 files changed

+37
-18
lines changed

client/angular/package-lock.json

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<plugin>
9090
<groupId>com.github.eirslett</groupId>
9191
<artifactId>frontend-maven-plugin</artifactId>
92-
<version>1.12.0</version>
92+
<version>1.12.1</version>
9393
<configuration>
9494
<nodeVersion>${node.version}</nodeVersion>
9595
<npmVersion>${npm.version}</npmVersion>
@@ -126,7 +126,7 @@
126126
<plugin>
127127
<groupId>org.apache.maven.plugins</groupId>
128128
<artifactId>maven-jar-plugin</artifactId>
129-
<version>3.2.0</version>
129+
<version>3.2.2</version>
130130
<configuration>
131131
<archive>
132132
<manifestEntries>

data-service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<plugin>
4747
<groupId>org.apache.maven.plugins</groupId>
4848
<artifactId>maven-war-plugin</artifactId>
49-
<version>3.3.1</version>
49+
<version>3.3.2</version>
5050
<configuration>
5151
<archiveClasses>true</archiveClasses>
5252
<packagingExcludes>WEB-INF/classes</packagingExcludes>
@@ -155,7 +155,7 @@
155155
<dependency>
156156
<groupId>com.google.code.gson</groupId>
157157
<artifactId>gson</artifactId>
158-
<version>2.8.9</version>
158+
<version>2.9.0</version>
159159
</dependency>
160160
<dependency>
161161
<groupId>org.jetbrains.xodus</groupId>

docker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<plugin>
3434
<groupId>com.google.cloud.tools</groupId>
3535
<artifactId>jib-maven-plugin</artifactId>
36-
<version>3.1.2</version>
36+
<version>3.2.0</version>
3737
<executions>
3838
<execution>
3939
<id>make-docker-image</id>

onejar/pom.xml

Lines changed: 2 additions & 2 deletions
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.58</tomcat.version>
19+
<tomcat.version>9.0.59</tomcat.version>
2020
</properties>
2121

2222
<build>
@@ -25,7 +25,7 @@
2525
<!-- prevent normal jar from being built -->
2626
<groupId>org.apache.maven.plugins</groupId>
2727
<artifactId>maven-jar-plugin</artifactId>
28-
<version>3.2.0</version>
28+
<version>3.2.2</version>
2929
<executions>
3030
<execution>
3131
<id>default-jar</id>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@
251251
<dependency>
252252
<groupId>com.puppycrawl.tools</groupId>
253253
<artifactId>checkstyle</artifactId>
254-
<version>9.3</version>
254+
<version>10.0</version>
255255
</dependency>
256256
</dependencies>
257257
<executions>
@@ -335,7 +335,7 @@
335335
<dependency>
336336
<groupId>com.github.spotbugs</groupId>
337337
<artifactId>spotbugs</artifactId>
338-
<version>4.5.3</version>
338+
<version>4.6.0</version>
339339
</dependency>
340340
</dependencies>
341341
<configuration>
@@ -437,7 +437,7 @@
437437
<dependency>
438438
<groupId>com.github.spotbugs</groupId>
439439
<artifactId>spotbugs-annotations</artifactId>
440-
<version>4.5.3</version>
440+
<version>4.6.0</version>
441441
<scope>provided</scope>
442442
</dependency>
443443

@@ -451,7 +451,7 @@
451451
<dependency>
452452
<groupId>org.mockito</groupId>
453453
<artifactId>mockito-core</artifactId>
454-
<version>4.3.1</version>
454+
<version>4.4.0</version>
455455
<scope>test</scope>
456456
</dependency>
457457
<dependency>

rest-test-service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<plugin>
2929
<groupId>org.apache.maven.plugins</groupId>
3030
<artifactId>maven-war-plugin</artifactId>
31-
<version>3.3.1</version>
31+
<version>3.3.2</version>
3232
<configuration>
3333
<archiveClasses>true</archiveClasses>
3434
<packagingExcludes>WEB-INF/classes</packagingExcludes>
@@ -79,7 +79,7 @@
7979
<dependency>
8080
<groupId>com.google.code.gson</groupId>
8181
<artifactId>gson</artifactId>
82-
<version>2.8.9</version>
82+
<version>2.9.0</version>
8383
</dependency>
8484
<dependency>
8585
<groupId>org.apache.commons</groupId>

server/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-compiler-plugin</artifactId>
44-
<version>3.8.1</version>
44+
<version>3.10.0</version>
4545
<configuration>
4646
<source>${maven.compiler.source}</source>
4747
<target>${maven.compiler.target}</target>
@@ -117,7 +117,7 @@
117117
<plugin>
118118
<groupId>org.apache.maven.plugins</groupId>
119119
<artifactId>maven-jar-plugin</artifactId>
120-
<version>3.2.0</version>
120+
<version>3.2.2</version>
121121
<configuration>
122122
<archive>
123123
<manifestEntries>
@@ -307,7 +307,7 @@
307307
<dependency>
308308
<groupId>com.google.code.gson</groupId>
309309
<artifactId>gson</artifactId>
310-
<version>2.8.9</version>
310+
<version>2.9.0</version>
311311
</dependency>
312312
<dependency>
313313
<groupId>com.blueconic</groupId>
@@ -328,7 +328,7 @@
328328
<dependency>
329329
<groupId>org.webjars</groupId>
330330
<artifactId>webjars-locator-core</artifactId>
331-
<version>0.48</version>
331+
<version>0.50</version>
332332
</dependency>
333333
<dependency>
334334
<groupId>com.github.ben-manes.caffeine</groupId>

webapp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<plugin>
104104
<groupId>org.apache.maven.plugins</groupId>
105105
<artifactId>maven-war-plugin</artifactId>
106-
<version>3.3.1</version>
106+
<version>3.3.2</version>
107107
<configuration>
108108
<archiveClasses>false</archiveClasses>
109109
<packagingExcludes>**/*.jsp</packagingExcludes>

0 commit comments

Comments
 (0)