From 9de2304051876ba92b18d2d612ec22c2f702e123 Mon Sep 17 00:00:00 2001 From: bhill6 <brian.hill@wisc.edu> Date: Mon, 10 Oct 2022 15:09:27 -0500 Subject: [PATCH] One more dependency update --- pom.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pom.xml b/pom.xml index 33ba917..f1bf89b 100644 --- a/pom.xml +++ b/pom.xml @@ -103,6 +103,17 @@ <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> <version>2.6.4</version> + <exclusions> + <exclusion> + <groupId>org.owasp.esapi</groupId> + <artifactId>esapi</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.owasp.esapi</groupId> + <artifactId>esapi</artifactId> + <version>2.5.0.0</version> </dependency> <dependency> <groupId>edu.wisc.uwss</groupId> @@ -259,6 +270,18 @@ <artifactId>maven-install-plugin</artifactId> <version>3.0.0-M1</version> </plugin> + <plugin> + <groupId>org.owasp</groupId> + <artifactId>dependency-check-maven</artifactId> + <version>7.0.4</version> + <executions> + <execution> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> -- GitLab