ports/security/owasp-dependency-check/files/patch-dependency--check--cli-pom.xml
Kurt Jaeger afc2f901f4 New port: security/owasp-dependency-check
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>
2018-04-01 14:37:26 +00:00

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>