Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: document scanning dependency-check with dependency-check #5095

Merged
merged 9 commits into from
Dec 9, 2022
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,26 @@ docker run --rm ^
```

Building From Source
-------------
--------------------

To build dependency-check (using Java 8) run the command:

```
mvn -s settings.xml install
```

Running dependency-check on dependency-check
--------------------------------------------

Dependency-check references several vulnerables dependencies that are never used
except as test resources. All of these optional test dependencies are included in
the `test-dependencies` profile. To run dependency-check against itself simple
exclude the `test-dependencies` profile;

```shell
mvn org.owasp:dependency-check-maven:aggregate -P-test-dependencies
```

Building the documentation
--------------------------

Expand All @@ -258,7 +271,7 @@ The documentation on the [github pages](http://jeremylong.github.io/DependencyCh
Once done, point your browser to `./target/staging/index.html`.

Building The Docker Image
-------------
-------------------------
To build dependency-check docker image run the command:

```
Expand Down
Loading