├── .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 ├── CHANGELOG.md ├── Jenkinsfile ├── README.md ├── docs └── images │ ├── image2018-9-13_11-52-26.png │ ├── image2018-9-13_15-14-57.png │ ├── image2018-9-13_15-15-45.png │ ├── snapshot5.png │ └── snapshot6.png ├── license.txt ├── pom.xml └── src ├── main ├── java │ └── hudson │ │ └── plugins │ │ └── groovy │ │ ├── AbstractGroovy.java │ │ ├── FileScriptSource.java │ │ ├── FileSystemScriptSource.java │ │ ├── Groovy.java │ │ ├── GroovyInstallation.java │ │ ├── GroovyInstaller.java │ │ ├── GroovyTokenMacro.java │ │ ├── ScriptSource.java │ │ ├── StringScriptSource.java │ │ ├── StringSystemScriptSource.java │ │ ├── SystemGroovy.java │ │ ├── SystemScriptSource.java │ │ └── WithGroovyStep.java └── resources │ ├── hudson │ └── plugins │ │ └── groovy │ │ ├── FileScriptSource │ │ └── config.jelly │ │ ├── FileSystemScriptSource │ │ └── config.jelly │ │ ├── Groovy │ │ ├── config.jelly │ │ ├── config_fr.properties │ │ ├── global.jelly │ │ ├── global_fr.properties │ │ ├── help-allowMacro.html │ │ ├── help-classPath.html │ │ ├── help-groovyName.html │ │ ├── help-javaOpts.html │ │ ├── help-parameters.html │ │ ├── help-properties.html │ │ ├── help-scriptParameters.html │ │ └── help.html │ │ ├── GroovyInstallation │ │ └── config.jelly │ │ ├── GroovyTokenMacro │ │ └── help.jelly │ │ ├── Pipeline.groovy │ │ ├── StringScriptSource │ │ └── config.jelly │ │ ├── StringSystemScriptSource │ │ └── config.jelly │ │ ├── SystemGroovy │ │ ├── config.jelly │ │ ├── config_fr.properties │ │ ├── help-bindings.html │ │ └── help.html │ │ ├── WithGroovyStep │ │ ├── config.jelly │ │ ├── config.properties │ │ ├── help-input.html │ │ ├── help-jdk.html │ │ └── help-tool.html │ │ ├── groovy.bat │ │ └── groovy.sh │ └── index.jelly └── test ├── java └── hudson │ └── plugins │ └── groovy │ ├── ClassPathTest.java │ ├── FileSystemScriptSourceTest.java │ ├── GroovyPluginTest.java │ ├── GroovyTokenMacroTest.java │ ├── StringScriptSourceTest.java │ ├── SystemGroovyTest.java │ └── WithGroovyStepTest.java └── resources ├── Dockerfile ├── classes └── App.class ├── hudson └── plugins │ └── groovy │ └── SystemGroovyTest │ └── upgrade │ └── jobs │ ├── dircp │ └── config.xml │ ├── external │ └── config.xml │ ├── jarcp │ └── config.xml │ ├── string │ └── config.xml │ ├── ws │ └── config.xml │ └── wscp │ └── config.xml └── lib └── groovy-cp-test.jar /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkinsci/groovy-plugin-developers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-safe-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.github/workflows/auto-merge-safe-deps.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/close-bom-if-passing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.github/workflows/close-bom-if-passing.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | 3 | target 4 | work 5 | tmp 6 | -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/image2018-9-13_11-52-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/docs/images/image2018-9-13_11-52-26.png -------------------------------------------------------------------------------- /docs/images/image2018-9-13_15-14-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/docs/images/image2018-9-13_15-14-57.png -------------------------------------------------------------------------------- /docs/images/image2018-9-13_15-15-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/docs/images/image2018-9-13_15-15-45.png -------------------------------------------------------------------------------- /docs/images/snapshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/docs/images/snapshot5.png -------------------------------------------------------------------------------- /docs/images/snapshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/docs/images/snapshot6.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/license.txt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/AbstractGroovy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/AbstractGroovy.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/FileScriptSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/FileScriptSource.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/FileSystemScriptSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/FileSystemScriptSource.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/Groovy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/Groovy.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/GroovyInstallation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/GroovyInstallation.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/GroovyInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/GroovyInstaller.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/GroovyTokenMacro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/GroovyTokenMacro.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/ScriptSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/ScriptSource.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/StringScriptSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/StringScriptSource.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/StringSystemScriptSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/StringSystemScriptSource.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/SystemGroovy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/SystemGroovy.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/SystemScriptSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/SystemScriptSource.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/groovy/WithGroovyStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/java/hudson/plugins/groovy/WithGroovyStep.java -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/FileScriptSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/FileScriptSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/FileSystemScriptSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/FileSystemScriptSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/config_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/config_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/global.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/global_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/global_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-allowMacro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help-allowMacro.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-classPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help-classPath.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-groovyName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help-groovyName.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-javaOpts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help-javaOpts.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-parameters.html: -------------------------------------------------------------------------------- 1 |
2 | Parameters for the Groovy executable. 3 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help-properties.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help-scriptParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help-scriptParameters.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Groovy/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Groovy/help.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/GroovyInstallation/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/GroovyInstallation/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/GroovyTokenMacro/help.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/GroovyTokenMacro/help.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/Pipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/Pipeline.groovy -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/StringScriptSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/StringScriptSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/StringSystemScriptSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/StringSystemScriptSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/SystemGroovy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/SystemGroovy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/SystemGroovy/config_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/SystemGroovy/config_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/SystemGroovy/help-bindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/SystemGroovy/help-bindings.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/SystemGroovy/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/SystemGroovy/help.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/WithGroovyStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/WithGroovyStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/WithGroovyStep/config.properties: -------------------------------------------------------------------------------- 1 | input.blurb=See help for details. 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/WithGroovyStep/help-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/WithGroovyStep/help-input.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/WithGroovyStep/help-jdk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/WithGroovyStep/help-jdk.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/WithGroovyStep/help-tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/WithGroovyStep/help-tool.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/groovy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/groovy.bat -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/groovy/groovy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/hudson/plugins/groovy/groovy.sh -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/ClassPathTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/ClassPathTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/FileSystemScriptSourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/FileSystemScriptSourceTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/GroovyPluginTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/GroovyPluginTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/GroovyTokenMacroTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/GroovyTokenMacroTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/StringScriptSourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/StringScriptSourceTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/SystemGroovyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/SystemGroovyTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/groovy/WithGroovyStepTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/java/hudson/plugins/groovy/WithGroovyStepTest.java -------------------------------------------------------------------------------- /src/test/resources/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/Dockerfile -------------------------------------------------------------------------------- /src/test/resources/classes/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/classes/App.class -------------------------------------------------------------------------------- /src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/dircp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/dircp/config.xml -------------------------------------------------------------------------------- /src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/external/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/external/config.xml -------------------------------------------------------------------------------- /src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/jarcp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/jarcp/config.xml -------------------------------------------------------------------------------- /src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/string/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/string/config.xml -------------------------------------------------------------------------------- /src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/ws/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/ws/config.xml -------------------------------------------------------------------------------- /src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/wscp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/hudson/plugins/groovy/SystemGroovyTest/upgrade/jobs/wscp/config.xml -------------------------------------------------------------------------------- /src/test/resources/lib/groovy-cp-test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/groovy-plugin/HEAD/src/test/resources/lib/groovy-cp-test.jar --------------------------------------------------------------------------------