mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-21 16:49:43 +01:00
version 1.1.4 of the projects documentation
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia at 2014-03-10
|
||||
| Generated by Apache Maven Doxia at 2014-03-29
|
||||
| Rendered using Apache Maven Fluido Skin 1.3.1
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20140310" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20140329" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>dependency-check-maven - Usage</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" />
|
||||
@@ -54,7 +54,7 @@
|
||||
|
||||
|
||||
<li class="">
|
||||
<a href="../../../../../../../../../../../../c:/Users/jeremy/Documents/NetBeansProjects/DependencyCheck/target/site/1.1.3/#" title="">
|
||||
<a href="../../../../../../../../../../../../c:/Users/jeremy/Documents/NetBeansProjects/DependencyCheck/target/site/1.1.4/#" title="">
|
||||
</a>
|
||||
<span class="divider">/</span>
|
||||
</li>
|
||||
@@ -67,9 +67,9 @@
|
||||
|
||||
|
||||
|
||||
<li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2014-03-10</li>
|
||||
<li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2014-03-29</li>
|
||||
<li id="projectVersion" class="pull-right">
|
||||
Version: 1.1.3
|
||||
Version: 1.1.4
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
@@ -157,7 +157,8 @@
|
||||
<p>It is important to understand that the first time this task is executed it may take 20 minutes or more as it downloads and processes the data from the National Vulnerability Database (NVD) hosted by NIST: <a class="externalLink" href="https://nvd.nist.gov">https://nvd.nist.gov</a></p>
|
||||
<p>After the first batch download, as long as the plugin is executed at least once every seven days the update will only take a few seconds.</p>
|
||||
<div class="section">
|
||||
<h2>Example 1:<a name="Example_1:"></a></h2>
|
||||
<div class="section">
|
||||
<h3>Example 1:<a name="Example_1:"></a></h3>
|
||||
<p>Create the DependencyCheck-report.html in the target directory</p>
|
||||
|
||||
<div class="source">
|
||||
@@ -168,7 +169,7 @@
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
@@ -185,7 +186,7 @@
|
||||
</project>
|
||||
</pre></div></div>
|
||||
<div class="section">
|
||||
<h2>Example 2:<a name="Example_2:"></a></h2>
|
||||
<h3>Example 2:<a name="Example_2:"></a></h3>
|
||||
<p>Create the DependencyCheck-report.html and fail the build for CVSS greater then 8</p>
|
||||
|
||||
<div class="source">
|
||||
@@ -196,7 +197,7 @@
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
<configuration>
|
||||
<failBuildOnCVSS>8</failBuildOnCVSS>
|
||||
</configuration>
|
||||
@@ -216,7 +217,7 @@
|
||||
</project>
|
||||
</pre></div></div>
|
||||
<div class="section">
|
||||
<h2>Example 3:<a name="Example_3:"></a></h2>
|
||||
<h3>Example 3:<a name="Example_3:"></a></h3>
|
||||
<p>Create the dependency-check report within the site</p>
|
||||
|
||||
<div class="source">
|
||||
@@ -232,7 +233,7 @@
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
<configuration>
|
||||
<externalReport>false</externalReport>
|
||||
</configuration>
|
||||
@@ -248,7 +249,7 @@
|
||||
</project>
|
||||
</pre></div></div>
|
||||
<div class="section">
|
||||
<h2>Example 4:<a name="Example_4:"></a></h2>
|
||||
<h3>Example 4:<a name="Example_4:"></a></h3>
|
||||
<p>Create the DependencyCheck-report.html and skip artifacts no bundled in distribution (Provided and Runtime scope)</p>
|
||||
|
||||
<div class="source">
|
||||
@@ -259,7 +260,7 @@
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
<configuration>
|
||||
<skipProvidedScope>true</skipProvidedScope>
|
||||
<skipRuntimeScope>true</skipRuntimeScope>
|
||||
@@ -280,7 +281,7 @@
|
||||
</project>
|
||||
</pre></div></div>
|
||||
<div class="section">
|
||||
<h2>Example 5:<a name="Example_5:"></a></h2>
|
||||
<h3>Example 5:<a name="Example_5:"></a></h3>
|
||||
<p>Create the DependencyCheck-report.html and use internal mirroring of CVE contents</p>
|
||||
|
||||
<div class="source">
|
||||
@@ -291,7 +292,7 @@
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
<configuration>
|
||||
<cveUrl12Modified>http://internal-mirror.mycorp.com/downloads/nist/nvdcve-modified.xml</cveUrl12Modified>
|
||||
<cveUrl20Modified>http://internal-mirror.mycorp.com/downloads/nist/nvdcve-2.0-modified.xml</cveUrl20Modified>
|
||||
@@ -312,7 +313,7 @@
|
||||
</build>
|
||||
...
|
||||
</project>
|
||||
</pre></div></div>
|
||||
</pre></div></div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user