Skip to content

Commit 7bbb0e0

Browse files
committed
Add optional flag to skip dependency check for integration tets
1 parent 7ac3480 commit 7bbb0e0

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

integration-tests/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<japicmp.skip>true</japicmp.skip>
3838
<maven.deploy.skip>true</maven.deploy.skip>
3939
<nexus.deploy.skip>true</nexus.deploy.skip>
40+
<skipItDepCheck>false</skipItDepCheck>
4041
</properties>
4142

4243
<modules>
@@ -45,6 +46,17 @@
4546
<module>guice4</module>
4647
</modules>
4748

49+
<build>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.owasp</groupId>
53+
<artifactId>dependency-check-maven</artifactId>
54+
<configuration>
55+
<skip>${skipItDepCheck}</skip>
56+
</configuration>
57+
</plugin>
58+
</plugins>
59+
</build>
4860
<reporting>
4961
<plugins>
5062
<plugin>

0 commit comments

Comments
 (0)