mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-14 07:43:40 +01:00
updated site structure and data
Former-commit-id: 9745b59268f55930b3fdff9c24ad219715cb714a
This commit is contained in:
@@ -280,7 +280,6 @@ Copyright (c) 2013 - Jeremy Long. All Rights Reserved.
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>index</report>
|
||||
<report>summary</report>
|
||||
<report>license</report>
|
||||
<report>help</report>
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
About
|
||||
====================
|
||||
OWASP dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly
|
||||
disclosed vulnerabilities associated with the project's dependencies. The task will
|
||||
generate a report listing the dependency, any identified Common Platform Enumeration (CPE)
|
||||
identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.
|
||||
|
||||
Installation
|
||||
====================
|
||||
Download dependency-check-ant from [bintray here](http://dl.bintray.com/jeremy-long/owasp/dependency-check-ant-${project.version}.jar).
|
||||
@@ -19,7 +26,7 @@ must add the classpath to the taskdef:
|
||||
```
|
||||
|
||||
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
|
||||
take 10 minutes or more as it downloads and processes the data from the National
|
||||
Vulnerability Database (NVD) hosted by NIST: https://nvd.nist.gov
|
||||
|
||||
After the first batch download, as long as the task is executed at least once every
|
||||
@@ -1,6 +1,6 @@
|
||||
Usage
|
||||
====================
|
||||
First, add the dependency-check-ant taskdef to your build.xml (see the [installation guide](installation.html):
|
||||
First, add the dependency-check-ant taskdef to your build.xml (see the [installation guide](installation.html)):
|
||||
|
||||
```xml
|
||||
<taskdef name="dependency-check" classname="org.owasp.dependencycheck.taskdefs.DependencyCheckTask"/>
|
||||
|
||||
@@ -31,7 +31,6 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
|
||||
<item name="Usage" href="usage.html"/>
|
||||
<item name="Configuration" href="configuration.html"/>
|
||||
</menu>
|
||||
<menu ref="Project Documentation" />
|
||||
<menu ref="reports" />
|
||||
</body>
|
||||
</project>
|
||||
@@ -184,7 +184,6 @@ Copyright (c) 2012 - Jeremy Long. All Rights Reserved.
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>index</report>
|
||||
<report>summary</report>
|
||||
<report>license</report>
|
||||
<report>help</report>
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
About
|
||||
====================
|
||||
OWASP dependency-check-cli is an command line tool that uses dependency-check-core to detect
|
||||
publicly disclosed vulnerabilities associated with the scanned project dependencies. The tool
|
||||
will generate a report listing the dependency, any identified Common Platform Enumeration (CPE)
|
||||
identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.
|
||||
|
||||
Installation & Usage
|
||||
====================
|
||||
Download the dependency-check command line tool [here](http://dl.bintray.com/jeremy-long/owasp/dependency-check-${project.version}-release.zip).
|
||||
@@ -27,10 +27,9 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
|
||||
<item name="dependency-check" href="../index.html"/>
|
||||
</breadcrumbs>
|
||||
<menu name="Getting Started">
|
||||
<item name="Installation" href="installation.html"/>
|
||||
<item name="Installation" href="index.html"/>
|
||||
<item name="Configuration" href="arguments.html"/>
|
||||
</menu>
|
||||
<menu ref="Project Documentation" />
|
||||
<menu ref="reports" />
|
||||
</body>
|
||||
</project>
|
||||
@@ -219,6 +219,20 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>summary</report>
|
||||
<report>license</report>
|
||||
<report>help</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
|
||||
@@ -10,7 +10,7 @@ for details.
|
||||
|
||||
The engine is currently exposed via:
|
||||
|
||||
- [Command Line Tool](../dependency-check-cli/installation.html)
|
||||
- [Maven Plugin](../dependency-check-maven/usage.html)
|
||||
- [Ant Task](../dependency-check-ant/installation.html)
|
||||
- [Command Line Tool](../dependency-check-cli/index.html)
|
||||
- [Maven Plugin](../dependency-check-maven/index.html)
|
||||
- [Ant Task](../dependency-check-ant/index.html)
|
||||
- [Jenkins Plugin](../dependency-check-jenkins/index.html)
|
||||
|
||||
@@ -19,13 +19,16 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
|
||||
<project name="dependency-check-core">
|
||||
<bannerLeft>
|
||||
<name>OWASP dependency-check-core</name>
|
||||
<alt>OWASP dependency-check-maven</alt>
|
||||
<alt>OWASP dependency-check-core</alt>
|
||||
<src>./images/dc-core.svg</src>
|
||||
</bannerLeft>
|
||||
<body>
|
||||
<breadcrumbs>
|
||||
<item name="dependency-check" href="../index.html"/>
|
||||
</breadcrumbs>
|
||||
<menu ref="OWASP dependency-check-core">
|
||||
<item collapse="false" name="About" href="./index.html"/>
|
||||
</menu>
|
||||
<menu ref="reports" />
|
||||
</body>
|
||||
</project>
|
||||
@@ -67,25 +67,26 @@
|
||||
</dependencies>
|
||||
<configuration>
|
||||
<skipDeploy>true</skipDeploy>
|
||||
<reportPlugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>index</report>
|
||||
<report>summary</report>
|
||||
<report>license</report>
|
||||
<report>help</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</reportPlugins>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>summary</report>
|
||||
<report>license</report>
|
||||
<report>help</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</project>
|
||||
|
||||
@@ -26,7 +26,6 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
|
||||
<breadcrumbs>
|
||||
<item name="dependency-check" href="../index.html"/>
|
||||
</breadcrumbs>
|
||||
<menu ref="Project Documentation" />
|
||||
<menu ref="reports" />
|
||||
</body>
|
||||
</project>
|
||||
@@ -127,6 +127,20 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>summary</report>
|
||||
<report>license</report>
|
||||
<report>help</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
|
||||
@@ -28,10 +28,9 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
|
||||
<item name="dependency-check" href="../index.html"/>
|
||||
</breadcrumbs>
|
||||
<menu name="Getting Started">
|
||||
<item name="Usage" href="usage.html"/>
|
||||
<item name="Usage" href="index.html"/>
|
||||
<item name="Configuration" href="configuration.html"/>
|
||||
</menu>
|
||||
<menu ref="Project Documentation" />
|
||||
<menu ref="reports"/>
|
||||
</body>
|
||||
</project>
|
||||
@@ -26,7 +26,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
||||
|
||||
<artifactId>dependency-check-utils</artifactId>
|
||||
<name>Dependency-Check Utils</name>
|
||||
<description>dependency-check-utils is a collection of common utlity classes used within dependency-check that might be useful in other projects.</description>
|
||||
<description>dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.</description>
|
||||
<!-- begin copy from http://minds.coremedia.com/2012/09/11/problem-solved-deploy-multi-module-maven-project-site-as-github-pages/ -->
|
||||
<distributionManagement>
|
||||
<site>
|
||||
|
||||
4
dependency-check-utils/src/site/markdown/index.md
Normal file
4
dependency-check-utils/src/site/markdown/index.md
Normal file
@@ -0,0 +1,4 @@
|
||||
About
|
||||
=====
|
||||
OWASP dependency-check-utils is a collection of common utility classes used within dependency-check
|
||||
that might be useful in other projects.
|
||||
@@ -21,6 +21,6 @@ More information about dependency-check can be found here:
|
||||
OWASP dependency-check's core analysis engine can be used as:
|
||||
|
||||
- [Command Line Tool](dependency-check-cli/index.html)
|
||||
- [Maven Plugin](dependency-check-maven/usage.html)
|
||||
- [Ant Task](dependency-check-ant/installation.html)
|
||||
- [Maven Plugin](dependency-check-maven/index.html)
|
||||
- [Ant Task](dependency-check-ant/index.html)
|
||||
- [Jenkins Plugin](dependency-check-jenkins/index.html)
|
||||
|
||||
@@ -3,8 +3,8 @@ Modules
|
||||
OWASP dependency-check's core analysis engine was designed to fit into an applications normal
|
||||
build and reporting process:
|
||||
|
||||
- [Maven Plugin](dependency-check-maven/usage.html)
|
||||
- [Ant Task](dependency-check-ant/installation.html)
|
||||
- [Maven Plugin](dependency-check-maven/index.html)
|
||||
- [Ant Task](dependency-check-ant/index.html)
|
||||
- [Jenkins Plugin](dependency-check-jenkins/index.html)
|
||||
|
||||
In addition, dependency-check can be executed from the [command line](dependency-check-cli/index.html).
|
||||
@@ -14,4 +14,4 @@ Core Engine
|
||||
Information about the core engine and the utilities used can be found:
|
||||
|
||||
- [Core](dependency-check-core/index.html)
|
||||
- [Utilities](dependency-check-utilities/index.html)
|
||||
- [Utilities](dependency-check-utils/index.html)
|
||||
|
||||
@@ -115,10 +115,10 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
|
||||
</item>
|
||||
</item>
|
||||
<item collapse="true" name="Modules" href="./modules.html">
|
||||
<item name="dependency-check-cli" href="./dependency-check-cli/installation.html">
|
||||
<item name="dependency-check-cli" href="./dependency-check-cli/index.html">
|
||||
<description>The command line interface for OWASP dependency-check.</description>
|
||||
</item>
|
||||
<item name="dependency-check-ant" href="./dependency-check-ant/installation.html">
|
||||
<item name="dependency-check-ant" href="./dependency-check-ant/index.html">
|
||||
<description>An Ant task to run OWASP dependency-check.</description>
|
||||
</item>
|
||||
<item name="dependency-check-maven" href="./dependency-check-maven/usage.html">
|
||||
|
||||
Reference in New Issue
Block a user