version 1.2.5 of the documentation

This commit is contained in:
Jeremy Long
2014-09-17 05:43:14 -04:00
parent c9a8bb3969
commit b31c4d94c4
988 changed files with 22559 additions and 19785 deletions

View File

@@ -1,13 +1,13 @@
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia at 2014-08-05
| Generated by Apache Maven Doxia at 2014-09-16
| 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="20140805" />
<meta name="Date-Revision-yyyymmdd" content="20140916" />
<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.2.4/#" title="">
<a href="../../../../../../../../../../../../c:/Users/jeremy/Documents/NetBeansProjects/DependencyCheck/target/site/1.2.5/#" title="">
</a>
<span class="divider">/</span>
</li>
@@ -67,9 +67,9 @@
<li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2014-08-05</li>
<li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2014-09-16</li>
<li id="projectVersion" class="pull-right">
Version: 1.2.4
Version: 1.2.5
</li>
</ul>
@@ -103,7 +103,7 @@
<i class="icon-chevron-right"></i>
Project Information</a>
</li>
<li>
<a href="project-reports.html" title="Project Reports">
@@ -163,13 +163,15 @@
<div class="source">
<pre>&lt;project&gt;
...
&lt;build&gt;
...
&lt;plugins&gt;
...
&lt;plugin&gt;
&lt;groupId&gt;org.owasp&lt;/groupId&gt;
&lt;artifactId&gt;dependency-check-maven&lt;/artifactId&gt;
&lt;version&gt;1.2.4&lt;/version&gt;
&lt;version&gt;1.2.5&lt;/version&gt;
&lt;executions&gt;
&lt;execution&gt;
&lt;goals&gt;
@@ -187,17 +189,54 @@
</pre></div></div>
<div class="section">
<h3>Example 2:<a name="Example_2:"></a></h3>
<p>Create an aggregated dependency-check report within the site</p>
<div class="source">
<pre>&lt;project&gt;
...
&lt;reporting&gt;
...
&lt;plugins&gt;
...
&lt;plugin&gt;
&lt;plugin&gt;
&lt;groupId&gt;org.owasp&lt;/groupId&gt;
&lt;artifactId&gt;dependency-check-maven&lt;/artifactId&gt;
&lt;version&gt;1.2.5&lt;/version&gt;
&lt;configuration&gt;
&lt;aggregate&gt;true&lt;/aggregate&gt;
&lt;/configuration&gt;
&lt;reportSets&gt;
&lt;reportSet&gt;
&lt;reports&gt;
&lt;report&gt;check&lt;/report&gt;
&lt;/reports&gt;
&lt;/reportSet&gt;
&lt;/reportSets&gt;
&lt;/plugin&gt;
&lt;/plugin&gt;
...
&lt;/plugins&gt;
...
&lt;/reporting&gt;
...
&lt;/project&gt;
</pre></div></div>
<div class="section">
<h3>Example 3:<a name="Example_3:"></a></h3>
<p>Create the DependencyCheck-report.html and fail the build for CVSS greater then 8</p>
<div class="source">
<pre>&lt;project&gt;
...
&lt;build&gt;
...
&lt;plugins&gt;
...
&lt;plugin&gt;
&lt;groupId&gt;org.owasp&lt;/groupId&gt;
&lt;artifactId&gt;dependency-check-maven&lt;/artifactId&gt;
&lt;version&gt;1.2.4&lt;/version&gt;
&lt;version&gt;1.2.5&lt;/version&gt;
&lt;configuration&gt;
&lt;failBuildOnCVSS&gt;8&lt;/failBuildOnCVSS&gt;
&lt;/configuration&gt;
@@ -217,50 +256,20 @@
&lt;/project&gt;
</pre></div></div>
<div class="section">
<h3>Example 3:<a name="Example_3:"></a></h3>
<p>Create the dependency-check report within the site</p>
<div class="source">
<pre>&lt;project&gt;
&lt;build&gt;
&lt;plugins&gt;
...
&lt;plugin&gt;
&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
&lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
&lt;configuration&gt;
&lt;reportPlugins&gt;
&lt;plugin&gt;
&lt;groupId&gt;org.owasp&lt;/groupId&gt;
&lt;artifactId&gt;dependency-check-maven&lt;/artifactId&gt;
&lt;version&gt;1.2.4&lt;/version&gt;
&lt;configuration&gt;
&lt;externalReport&gt;false&lt;/externalReport&gt;
&lt;/configuration&gt;
&lt;/plugin&gt;
&lt;/reportPlugins&gt;
&lt;/configuration&gt;
&lt;/plugin&gt;
...
&lt;/plugins&gt;
...
&lt;/build&gt;
...
&lt;/project&gt;
</pre></div></div>
<div class="section">
<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>
<p>Create the DependencyCheck-report.html and skip artifacts not bundled in distribution (Provided and Runtime scope)</p>
<div class="source">
<pre>&lt;project&gt;
...
&lt;build&gt;
...
&lt;plugins&gt;
...
&lt;plugin&gt;
&lt;groupId&gt;org.owasp&lt;/groupId&gt;
&lt;artifactId&gt;dependency-check-maven&lt;/artifactId&gt;
&lt;version&gt;1.2.4&lt;/version&gt;
&lt;version&gt;1.2.5&lt;/version&gt;
&lt;configuration&gt;
&lt;skipProvidedScope&gt;true&lt;/skipProvidedScope&gt;
&lt;skipRuntimeScope&gt;true&lt;/skipRuntimeScope&gt;
@@ -286,13 +295,15 @@
<div class="source">
<pre>&lt;project&gt;
...
&lt;build&gt;
...
&lt;plugins&gt;
...
&lt;plugin&gt;
&lt;groupId&gt;org.owasp&lt;/groupId&gt;
&lt;artifactId&gt;dependency-check-maven&lt;/artifactId&gt;
&lt;version&gt;1.2.4&lt;/version&gt;
&lt;version&gt;1.2.5&lt;/version&gt;
&lt;configuration&gt;
&lt;cveUrl12Modified&gt;http://internal-mirror.mycorp.com/downloads/nist/nvdcve-modified.xml&lt;/cveUrl12Modified&gt;
&lt;cveUrl20Modified&gt;http://internal-mirror.mycorp.com/downloads/nist/nvdcve-2.0-modified.xml&lt;/cveUrl20Modified&gt;