Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 8f6944a

Browse files
committed
FAB-10254 Add Support for OWASP DependencyCheck
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>
1 parent 2e8b029 commit 8f6944a

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed

pom.xml

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -509,18 +509,6 @@
509509
</configuration>
510510
</plugin>
511511

512-
<plugin>
513-
<groupId>org.owasp</groupId>
514-
<artifactId>dependency-check-maven</artifactId>
515-
<version>3.2.0</version>
516-
<executions>
517-
<execution>
518-
<goals>
519-
<goal>check</goal>
520-
</goals>
521-
</execution>
522-
</executions>
523-
</plugin>
524512

525513
</plugins>
526514
</build>
@@ -531,6 +519,27 @@
531519
</snapshotRepository>
532520
</distributionManagement>
533521
<profiles>
522+
<profile>
523+
<id>owasp</id>
524+
<build>
525+
<plugins>
526+
<plugin>
527+
<groupId>org.owasp</groupId>
528+
<artifactId>dependency-check-maven</artifactId>
529+
<version>3.2.0</version>
530+
<executions>
531+
<execution>
532+
<goals>
533+
<goal>check</goal>
534+
</goals>
535+
</execution>
536+
</executions>
537+
</plugin>
538+
539+
</plugins>
540+
</build>
541+
542+
</profile>
534543
<profile>
535544
<id>release</id>
536545
<build>

0 commit comments

Comments
 (0)