mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
Dependency-Check is a utility that attempts to detect publicly disclosed vulnerabilities contained within project dependencies. It does this by determining if there is a Common Platform Enumeration (CPE) identifier for a given dependency. If found, it will generate a report linking to the associated CVE entries. WWW: https://github.com/jeremylong/DependencyCheck WWW: https://www.owasp.org/index.php/OWASP_Dependency_Check WWW: https://jeremylong.github.io/DependencyCheck/dependency-check-cli/ WWW: https://jeremylong.github.io/DependencyCheck/dependency-check-cli/arguments.html PR: 226206 Submitted by: Andreas Sommer <andreas.sommer87@googlemail.com>
18 lines
870 B
XML
18 lines
870 B
XML
--- dependency-check-cli/pom.xml.orig 2018-01-29 03:12:27 UTC
|
|
+++ dependency-check-cli/pom.xml
|
|
@@ -91,7 +91,15 @@ Copyright (c) 2012 - Jeremy Long. All Ri
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
+ <archive>
|
|
+ <manifest>
|
|
+ <mainClass>org.owasp.dependencycheck.App</mainClass>
|
|
+ </manifest>
|
|
+ </archive>
|
|
<attach>false</attach> <!-- don't install/deploy this archive -->
|
|
+ <descriptorRefs>
|
|
+ <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
+ </descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|