Skip to content
Snippets Groups Projects
Commit 5f60e383 authored by Marc Burnie [AWS]'s avatar Marc Burnie [AWS]
Browse files

Merge branch 'marcburnie-master-patch-42657' into 'master'

fixing dependency check

See merge request !458
parents 6037d109 a9a5573e
No related branches found
No related tags found
1 merge request!458fixing dependency check
Pipeline #158370 failed
...@@ -205,21 +205,24 @@ ...@@ -205,21 +205,24 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.owasp</groupId> <groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId> <artifactId>dependency-check-maven</artifactId>
<version>6.2.2</version> <version>7.4.4</version>
<executions>
<execution>
<configuration> <configuration>
<skip>true</skip> <!-- .Disable Net content-->
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<nugetconfAnalyzerEnabled>false</nugetconfAnalyzerEnabled>
<nuspecAnalyzerEnabled>false</nuspecAnalyzerEnabled>
</configuration> </configuration>
<goals> <executions>
<goal>check</goal> <execution>
</goals> <goals>
</execution> <goal>check</goal>
</executions> </goals>
</plugin> </execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment