Skip to content

Commit a06138e

Browse files
committed
Add OWASP plugin + update dependencies
1 parent 1467e40 commit a06138e

1 file changed

Lines changed: 52 additions & 2 deletions

File tree

pom.xml

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
<dependency>
189189
<groupId>org.springframework.security.extensions</groupId>
190190
<artifactId>spring-security-saml2-core</artifactId>
191-
<version>1.0.9.RELEASE</version>
191+
<version>1.0.10.RELEASE</version>
192192
</dependency>
193193

194194
<!-- Kerberos -->
@@ -207,7 +207,7 @@
207207
<dependency>
208208
<groupId>com.spotify</groupId>
209209
<artifactId>docker-client</artifactId>
210-
<version>8.15.2</version>
210+
<version>8.15.3</version>
211211
</dependency>
212212
<!-- Jersey, a dependency of docker-client with wonky version constraints -->
213213
<dependency>
@@ -297,6 +297,33 @@
297297
<scope>test</scope>
298298
</dependency>
299299

300+
301+
<!-- Recursive dependencies which are upgraded for security -->
302+
<dependency>
303+
<groupId>commons-collections</groupId>
304+
<artifactId>commons-collections</artifactId>
305+
<version>3.2.2</version>
306+
</dependency>
307+
<dependency>
308+
<groupId>org.apache.commons</groupId>
309+
<artifactId>commons-compress</artifactId>
310+
<version>1.19</version>
311+
</dependency>
312+
<dependency>
313+
<groupId>commons-beanutils</groupId>
314+
<artifactId>commons-beanutils</artifactId>
315+
<version>1.9.4</version>
316+
</dependency>
317+
<dependency>
318+
<groupId>com.google.guava</groupId>
319+
<artifactId>guava</artifactId>
320+
<version>25.0-jre</version>
321+
</dependency>
322+
<dependency>
323+
<groupId>org.springframework</groupId>
324+
<artifactId>spring-core</artifactId>
325+
<version>5.2.9.RELEASE</version>
326+
</dependency>
300327
</dependencies>
301328

302329
<build>
@@ -384,4 +411,27 @@
384411
</plugin>
385412
</plugins>
386413
</build>
414+
415+
<profiles>
416+
<profile>
417+
<id>owasp-dependency-check</id>
418+
<build>
419+
<plugins>
420+
<plugin>
421+
<groupId>org.owasp</groupId>
422+
<artifactId>dependency-check-maven</artifactId>
423+
<version>6.0.2</version>
424+
<executions>
425+
<execution>
426+
<goals>
427+
<goal>check</goal>
428+
</goals>
429+
</execution>
430+
</executions>
431+
</plugin>
432+
</plugins>
433+
</build>
434+
</profile>
435+
</profiles>
436+
387437
</project>

0 commit comments

Comments
 (0)