NIFI-10484 Upgraded Dependency Check Plugin from 7.1.1 to 7.1.2

- Disabled unused .NET Assembly Analyzer for Dependency Check Plugin to avoid error messages

Signed-off-by: Nathan Gough <thenatog@gmail.com>

This closes #6403.
This commit is contained in:
exceptionfactory 2022-09-12 09:28:26 -05:00 committed by Nathan Gough
parent eaaff4ede9
commit 4bfa776cf7
1 changed files with 3 additions and 1 deletions

View File

@ -1127,7 +1127,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>7.1.1</version>
<version>7.1.2</version>
<executions>
<execution>
<inherited>false</inherited>
@ -1139,6 +1139,8 @@
<suppressionFiles>nifi-dependency-check-maven/suppressions.xml</suppressionFiles>
<!-- Skip System Scope to avoid dependency resolution errors with jdk.tools on Java 8 -->
<skipSystemScope>true</skipSystemScope>
<!-- Disable .NET Assembly Analyzer to avoid non-applicable errors -->
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
</configuration>
</execution>
</executions>