Is there anyway I can create a two module projects in gradle, and trigger a build for each module by itself?
Root project 'Example'
Jenkinsfile
\--- Project ':SubProject'
Jenkinsfile
I want that jenkins will trigger a build only in the module that has been changed.
for example :
If my SubProject
changed, then only SubProject
will execute it's own Jenkinsfile
.
I looked up for this option for a very long time...
As you can see in the other questions, there is no any easy way to achieve that.
Is there any Jenkins pipeline
or plugin
that can deal with that?