├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── auto-merge-safe-deps.yml │ ├── cd.yaml │ ├── close-bom-if-passing.yml │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── Jenkinsfile ├── README.md ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── multibranch │ │ ├── AbstractWorkflowBranchProjectFactory.java │ │ ├── AbstractWorkflowMultiBranchProjectFactory.java │ │ ├── BranchJobProperty.java │ │ ├── DurabilityHintBranchProperty.java │ │ ├── JobPropertyStep.java │ │ ├── JobPropertyTrackerAction.java │ │ ├── ReadTrustedStep.java │ │ ├── ResolveScmStep.java │ │ ├── SCMBinder.java │ │ ├── SCMVar.java │ │ ├── WorkflowBranchProjectFactory.java │ │ ├── WorkflowMultiBranchProject.java │ │ └── WorkflowMultiBranchProjectFactory.java ├── resources │ ├── index.jelly │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── multibranch │ │ ├── DurabilityHintBranchProperty │ │ ├── config.jelly │ │ └── help.html │ │ ├── JobPropertyStep │ │ ├── config.jelly │ │ └── help.html │ │ ├── Messages.properties │ │ ├── Messages_fr.properties │ │ ├── Messages_zh_CN.properties │ │ ├── ReadTrustedStep │ │ ├── config.jelly │ │ ├── help-path.html │ │ └── help.html │ │ ├── ResolveScmStep │ │ ├── config.jelly │ │ ├── help-ignoreErrors.html │ │ ├── help-source.html │ │ ├── help-targets.html │ │ └── help.html │ │ ├── SCMBinder │ │ └── config.jelly │ │ ├── SCMVar │ │ └── help.jelly │ │ ├── WorkflowBranchProjectFactory │ │ ├── config.jelly │ │ ├── getting-started-links.jelly │ │ ├── getting-started.jelly │ │ └── help-scriptPath.html │ │ ├── WorkflowMultiBranchProject │ │ └── newInstanceDetail.jelly │ │ └── WorkflowMultiBranchProjectFactory │ │ ├── config.jelly │ │ ├── getting-started-links.jelly │ │ ├── getting-started.jelly │ │ └── help-scriptPath.html └── webapp │ └── images │ └── pipelinemultibranchproject.svg └── test ├── java └── org │ └── jenkinsci │ └── plugins │ └── workflow │ └── multibranch │ ├── DurabilityHintBranchPropertyWorkflowTest.java │ ├── GitDirectorySCMNavigator.java │ ├── JobPropertyStepTest.java │ ├── NoTriggerBranchPropertyWorkflowTest.java │ ├── ReadTrustedStepTest.java │ ├── RepairBranchPropertyTest.java │ ├── ReplayActionTest.java │ ├── ResolveScmStepTest.java │ ├── SCMBinderTest.java │ ├── SCMVarTest.java │ ├── WorkflowBranchProjectFactoryTest.java │ ├── WorkflowMultiBranchProjectFactoryTest.java │ └── WorkflowMultiBranchProjectTest.java └── resources └── org └── jenkinsci └── plugins └── workflow └── multibranch ├── GitDirectorySCMNavigator └── config.jelly ├── JobPropertyStepTest └── trackerPropertyUpgrade.zip ├── RepairBranchPropertyTest └── removedPropertyAtStartup.zip └── WorkflowMultiBranchProjectTest └── OldSCM └── config.jelly /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkinsci/workflow-multibranch-plugin-developers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-safe-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.github/workflows/auto-merge-safe-deps.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/close-bom-if-passing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.github/workflows/close-bom-if-passing.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/AbstractWorkflowBranchProjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/AbstractWorkflowBranchProjectFactory.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/AbstractWorkflowMultiBranchProjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/AbstractWorkflowMultiBranchProjectFactory.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/BranchJobProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/BranchJobProperty.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/JobPropertyTrackerAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/JobPropertyTrackerAction.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/SCMBinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/SCMBinder.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/SCMVar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/SCMVar.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProject.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStep/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/Messages_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/Messages_fr.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/Messages_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/Messages_zh_CN.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep/help-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep/help-path.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStep/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help-ignoreErrors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help-ignoreErrors.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help-source.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help-targets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help-targets.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStep/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/SCMBinder/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/SCMBinder/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/SCMVar/help.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/SCMVar/help.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/getting-started-links.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/getting-started-links.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/getting-started.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/getting-started.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/help-scriptPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactory/help-scriptPath.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProject/newInstanceDetail.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProject/newInstanceDetail.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/getting-started-links.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/getting-started-links.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/getting-started.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/getting-started.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/help-scriptPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactory/help-scriptPath.html -------------------------------------------------------------------------------- /src/main/webapp/images/pipelinemultibranchproject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/main/webapp/images/pipelinemultibranchproject.svg -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchPropertyWorkflowTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchPropertyWorkflowTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/GitDirectorySCMNavigator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/GitDirectorySCMNavigator.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStepTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStepTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/NoTriggerBranchPropertyWorkflowTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/NoTriggerBranchPropertyWorkflowTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStepTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/ReadTrustedStepTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/RepairBranchPropertyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/RepairBranchPropertyTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/ReplayActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/ReplayActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStepTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/ResolveScmStepTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/SCMBinderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/SCMBinderTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/SCMVarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/SCMVarTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowBranchProjectFactoryTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectFactoryTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectTest.java -------------------------------------------------------------------------------- /src/test/resources/org/jenkinsci/plugins/workflow/multibranch/GitDirectorySCMNavigator/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/resources/org/jenkinsci/plugins/workflow/multibranch/GitDirectorySCMNavigator/config.jelly -------------------------------------------------------------------------------- /src/test/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStepTest/trackerPropertyUpgrade.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/resources/org/jenkinsci/plugins/workflow/multibranch/JobPropertyStepTest/trackerPropertyUpgrade.zip -------------------------------------------------------------------------------- /src/test/resources/org/jenkinsci/plugins/workflow/multibranch/RepairBranchPropertyTest/removedPropertyAtStartup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/resources/org/jenkinsci/plugins/workflow/multibranch/RepairBranchPropertyTest/removedPropertyAtStartup.zip -------------------------------------------------------------------------------- /src/test/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectTest/OldSCM/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/workflow-multibranch-plugin/HEAD/src/test/resources/org/jenkinsci/plugins/workflow/multibranch/WorkflowMultiBranchProjectTest/OldSCM/config.jelly --------------------------------------------------------------------------------