Using Jenkins Pipeline there is no longer Source Code Management because checkout is handled within the pipeline script.
How can i get notifyCommit to work while using Pipeline script?
I know there is an SCM choice to the pipeline script. Do I have to supply the git url to the project I am building here for notifyCommit to work?
I do not want to have any logic in Jenkinsfile for each project. It would be a nightmare to maintain the same build script within hundreds of projects. I was thinking of putting my pipeline script within a tools/jenkins-script-project.git project. All pipeline projects would check out this pipeline script for building. That case the logic for the pipeline build script is in a single location only. Unless there is another way I can do this.