diff --git a/dependency-check-ant/usage.html b/dependency-check-ant/usage.html index 92c18f77c..3804aabe2 100644 --- a/dependency-check-ant/usage.html +++ b/dependency-check-ant/usage.html @@ -4,209 +4,14 @@ | Rendered using Apache Maven Fluido Skin 1.3.1 --> -
- - - - -
-
-
-
-
-
- First, add the dependency-check-ant taskdef to your build.xml (see the installation guide):
- -<taskdef name="dependency-check" classname="org.owasp.dependencycheck.taskdefs.DependencyCheckTask"/> -
Or
- -<taskdef name="dependency-check" classname="org.owasp.dependencycheck.taskdefs.DependencyCheckTask"> - <classpath path="[path]/[to]/dependency-check-ant-1.3.0.jar"/> -</taskdef> -
Next, add the task to a target of your choosing:
- -<target name="dependency-check" description="Dependency-Check Analysis">
- <dependency-check applicationname="Hello World"
- autoupdate="true"
- reportoutputdirectory="${basedir}"
- reportformat="HTML">
-
- <fileset dir="lib">
- <include name="**/*.jar"/>
- </fileset>
- </dependency-check>
-</target>
-See the configuration guide for more information.
-