This is an automated email from the ASF dual-hosted git repository. bdemers pushed a commit to branch update-guava-1-10-x in repository https://gitbox.apache.org/repos/asf/shiro.git
commit 7bbb0e0c7048f31fbdfe4b9f71519bf2305540cc Author: Brian Demers <[email protected]> AuthorDate: Thu Oct 6 17:39:34 2022 -0500 Add optional flag to skip dependency check for integration tets --- integration-tests/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index efc6d0b9..7c94671a 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -37,6 +37,7 @@ <japicmp.skip>true</japicmp.skip> <maven.deploy.skip>true</maven.deploy.skip> <nexus.deploy.skip>true</nexus.deploy.skip> + <skipItDepCheck>false</skipItDepCheck> </properties> <modules> @@ -45,6 +46,17 @@ <module>guice4</module> </modules> + <build> + <plugins> + <plugin> + <groupId>org.owasp</groupId> + <artifactId>dependency-check-maven</artifactId> + <configuration> + <skip>${skipItDepCheck}</skip> + </configuration> + </plugin> + </plugins> + </build> <reporting> <plugins> <plugin>
