Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

sgohlke/dependency-check-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

dependency-check-example

Note: This is a playground project project and may not use up-to-date depenencies!

Example on using dependency-check

Dependency Check

To execute a dependency-check scan you can call the maven command

dependency-check:check (plugin: org.owasp:dependency-check-maven)

This will show the results in the command line and create an html report.

Dependency Tree

If it is not clear which source a dependency belongs to you can create a dependency tree using the maven command

dependency:tree (plugin: org.apache.maven.plugins:maven-dependency-plugin)

This will show a dependency tree in the command line.

Update Check

If you want to check the used dependencies for updates you can achieve this using the maven command

versions:display-dependency-updates (plugin: org.codehaus.mojo:versions-maven-plugin)

This will show a dependency tree in the command line.

Useful links