Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHOENIX-6065 Add OWASP dependency check, and update the flagged direc… #868

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 32 additions & 2 deletions pom.xml
Expand Up @@ -153,8 +153,10 @@
<!-- JaCoCo thresholds which we can override in each sub-module if required -->
<jacoco.instruction.coverage.percentage>0.700</jacoco.instruction.coverage.percentage>
<jacoco.branch.coverage.percentage>0.600</jacoco.branch.coverage.percentage>
<curator.version>2.12.0</curator.version>
<zookeeper.version>3.4.14</zookeeper.version>
<curator.version>2.12.0</curator.version>

<maven-owasp-plugin.version>5.3.2</maven-owasp-plugin.version>
</properties>

<build>
Expand Down Expand Up @@ -1248,7 +1250,35 @@
</properties>
</profile>


<profile>
<id>owasp-dependency-check</id>
<activation>
<property>
<name>owasp-check</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${maven-owasp-plugin.version}</version>
<configuration>
<skipProvidedScope>true</skipProvidedScope>
<skipRuntimeScope>true</skipRuntimeScope>
<skipSystemScope>true</skipSystemScope>
</configuration>
<executions>
<execution>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>codecoverage</id>
Expand Down