Skip to content

Commit

Permalink
upgrade dependency-check
Browse files Browse the repository at this point in the history
  • Loading branch information
uweschaefer committed Apr 18, 2022
1 parent 45beb41 commit a2916b0
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
<spring-boot.version>2.6.6</spring-boot.version>
<etc>${basedir}/src/etc</etc>
<spotless-maven-plugin.version>2.22.1</spotless-maven-plugin.version>
<dependency-check.skip>true</dependency-check.skip>
</properties>
<modules>
<module>cryptoshred-core</module>
Expand Down Expand Up @@ -126,6 +125,28 @@
</dependencies>
<build>
<plugins>

<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>7.0.4</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>true</failOnError>
<failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability>
<skipRuntimeScope>true</skipRuntimeScope>
<skipProvidedScope>true</skipProvidedScope>
<skipTestScope>true</skipTestScope>
<skipSystemScope>true</skipSystemScope>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M6</version>
Expand Down

0 comments on commit a2916b0

Please sign in to comment.