Skip to content

Commit

Permalink
Add optional flag to skip dependency check for integration tets
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemers committed Oct 6, 2022
1 parent 7ac3480 commit 7bbb0e0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions integration-tests/pom.xml
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit 7bbb0e0

Please sign in to comment.