Skip to content

Commit

Permalink
[FLINK-12119][build] Add owasp-dependency-check plugin
Browse files Browse the repository at this point in the history
Run via "mvn org.owasp:dependency-check-maven:aggregate".
Prints a report to stdout and creates a report in the root /target directory.
  • Loading branch information
knaufk authored and zentol committed Apr 17, 2019
1 parent c28c6e8 commit a505838
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1813,6 +1813,23 @@ under the License.
</executions>
</plugin>

<plugin>
<!-- run via "mvn org.owasp:dependency-check-maven:aggregate" -->
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>5.0.0-M2</version>
<configuration>
<format>ALL</format>
<skipSystemScope>true</skipSystemScope>
<skipProvidedScope>true</skipProvidedScope>
<excludes>
<exclude>*flink-docs</exclude>
<exclude>*flink-end-to-end-tests</exclude>
<exclude>*flink-fs-tests*</exclude>
<exclude>*flink-yarn-tests*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit a505838

Please sign in to comment.