Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jenkins workflow "Build whenever a SNAPSHOT dependency is built"

I'm currently trying to construct my Maven Job with Jenkins Workflow plugin. In maven job it's possible to set Build Trigger options to "Build whenever a SNAPSHOT dependency is built". Is there any way to translate this option to Workflow job? I really don't want to transcribe those dependencies manually (there are a lot of them).

like image 867
Amadeusz Lisiecki Avatar asked Nov 09 '22 01:11

Amadeusz Lisiecki


1 Answers

Use Build pipeline plugin and create a view giving your top module as the initial jobenter image description here. It will automatically setup all the jobs according to it's dependencies.

like image 150
tinkerbell Avatar answered Nov 15 '22 06:11

tinkerbell