Jenkins sbt dependency dependencies?

Is it possible to automatically synchronize Jenkins dependencies with sbt dependencies? For example, if project B build.sbt says that project A (which I also wrote) is its dependency, can the Jenkins assembly for project B automatically detect this fact - and detect any other dependencies that can be added or removed to the build file .sbt in the future?

+3
source share
1 answer

You can use ScriptTrigger Plugin to write the appropriate code. Or you can write your own plugin and see IvyTrigger or Maven Dependency Update trigger . This can greatly improve the sbt module .

+1
source

All Articles