I found there is an OWASP dependency checking tool for Java projects: https://www.owasp.org/index.php/OWASP_Dependency_Check
I tried the tool on Scala projects, but it can find no dependencies.
Is there any similar thing for Scala projects?
I found there is an OWASP dependency checking tool for Java projects: https://www.owasp.org/index.php/OWASP_Dependency_Check
I tried the tool on Scala projects, but it can find no dependencies.
Is there any similar thing for Scala projects?
Copyright © 2021 Jogjafile Inc.
There is one now (June 2016):
albuch/sbt-dependency-check
from Alexander v. Buchholtz.You need to add to your project/plugins.sbt
and after that simply call
The report will be written to the location crossTarget.value(by default it is target/scala-2.11/).