Skip to content

Commit

Permalink
FAB-10254 Add Support for OWASP DependencyCheck
Browse files Browse the repository at this point in the history
OWASP DependencyCheck module finds vulnerabilities in the jar file that Java SDK depends on

Fixed Identation.

Change-Id: Id13698291af7c652f84ed87bf1fe42d0dbbc6b22
Signed-off-by: ASHUTOSH KUMAR <ashutosh_kumar@hotmail.com>
  • Loading branch information
ashku committed May 23, 2018
1 parent 2e8b029 commit 8f6944a
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -509,18 +509,6 @@
</configuration>
</plugin>

<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>
Expand All @@ -531,6 +519,27 @@
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>owasp</id>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

</profile>
<profile>
<id>release</id>
<build>
Expand Down

0 comments on commit 8f6944a

Please sign in to comment.