Skip to content

Jericho/Cake.DependencyCheck

 
 

Repository files navigation

Cake.DependencyCheck

OWASP DependencyCheck Cake Package. You need to use DependencyCheck Runner Tool.

Build status NuGet version NuGet downloads Join the chat at https://gitter.im/Cake-DependencyCheck/Lobby

Example usage;

#tool "nuget:?package=DependencyCheck.Runner.Tool&include=./**/dependency-check.sh&include=./**/dependency-check.bat"
#addin "nuget:?package=Cake.DependencyCheck"

Task("Dependency-Check")
    .Does(() =>
    {
        DependencyCheck(new DependencyCheckSettings
        {
            Project = "CustomerService",
            Scan = "source/directory/*",
            Format = "HTML"
        });
    });

Contributing

We'd love to get contributions from you! If you would like to contribute code or help squash a bug or two, that's awesome. Please familiarize yourself with Contribution Document.

License

See LICENSE file.

Code of Conduct

See Code of Conduct file.

About

OWASP DependencyCheck Cake Package

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 74.1%
  • PowerShell 18.1%
  • Shell 7.8%