Skip to content

Commit

Permalink
Merge pull request #126 from jewzaam/added-owasp-dependency-check
Browse files Browse the repository at this point in the history
Added OWASP dependency-check plugin
  • Loading branch information
dcrissman committed Jan 14, 2016
2 parents 336e5ae + 94164d9 commit b685c20
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pom.xml
Expand Up @@ -189,6 +189,15 @@
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>1.3.3</version>
<configuration>
<skipProvidedScope>true</skipProvidedScope>
<skipRuntimeScope>true</skipRuntimeScope>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
Expand Down Expand Up @@ -256,4 +265,17 @@
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>1.3.3</version>
<configuration>
<skipProvidedScope>true</skipProvidedScope>
<skipRuntimeScope>true</skipRuntimeScope>
</configuration>
</plugin>
</plugins>
</reporting>
</project>

0 comments on commit b685c20

Please sign in to comment.