Skip to content

Commit 4260762

Browse files
committed
Don't run OWASP dependency check twice
The OWASP Dependency Check is bound to the verify phase and runs in the Run Tests and Static Code Analysis stages. To speed up the pipeline, the OWASP Dependency Check doesn't run when the QA profile is used. A future optimization of the pipeline is to have all static code analysis _before_ the Run Test phase, and have them produce their XML reports which can then be consumed by SonarQube QA-7800
1 parent 9c362e2 commit 4260762

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,13 @@
708708
<failOnError>false</failOnError>
709709
</configuration>
710710
</plugin>
711+
<plugin>
712+
<groupId>org.owasp</groupId>
713+
<artifactId>dependency-check-maven</artifactId>
714+
<configuration>
715+
<skip>true</skip>
716+
</configuration>
717+
</plugin>
711718
<plugin>
712719
<groupId>org.revapi</groupId>
713720
<artifactId>revapi-maven-plugin</artifactId>

0 commit comments

Comments
 (0)