├── .gitignore ├── COMPATIBILITY.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE.md ├── README.md ├── docs ├── allclasses-frame.html ├── allclasses-noframe.html ├── com │ └── infostretch │ │ └── labs │ │ ├── actions │ │ ├── ConvertFolderAction.ActionFolderInjector.html │ │ ├── ConvertFolderAction.ConvertFolderActionDescriptor.html │ │ ├── ConvertFolderAction.html │ │ ├── ConvertJobAction.ActionInjector.html │ │ ├── ConvertJobAction.ConvertJobActionDescriptor.html │ │ ├── ConvertJobAction.html │ │ ├── ConvertRootAction.ConvertRootActionDescriptor.html │ │ ├── ConvertRootAction.html │ │ ├── Messages.html │ │ ├── class-use │ │ │ ├── ConvertFolderAction.ActionFolderInjector.html │ │ │ ├── ConvertFolderAction.ConvertFolderActionDescriptor.html │ │ │ ├── ConvertFolderAction.html │ │ │ ├── ConvertJobAction.ActionInjector.html │ │ │ ├── ConvertJobAction.ConvertJobActionDescriptor.html │ │ │ ├── ConvertJobAction.html │ │ │ ├── ConvertRootAction.ConvertRootActionDescriptor.html │ │ │ ├── ConvertRootAction.html │ │ │ └── Messages.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── plugins │ │ ├── AnsiblePlaybookBuilder.html │ │ ├── Ant.html │ │ ├── ArtifactArchiver.html │ │ ├── BatchFile.html │ │ ├── CheckStylePublisher.html │ │ ├── Git.html │ │ ├── JUnitResultArchiver.html │ │ ├── Mailer.html │ │ ├── Maven.html │ │ ├── NpmPackagesBuildWrapper.html │ │ ├── Plugins.html │ │ ├── Shell.html │ │ ├── TestNG.html │ │ ├── class-use │ │ │ ├── AnsiblePlaybookBuilder.html │ │ │ ├── Ant.html │ │ │ ├── ArtifactArchiver.html │ │ │ ├── BatchFile.html │ │ │ ├── CheckStylePublisher.html │ │ │ ├── Git.html │ │ │ ├── JUnitResultArchiver.html │ │ │ ├── Mailer.html │ │ │ ├── Maven.html │ │ │ ├── NpmPackagesBuildWrapper.html │ │ │ ├── Plugins.html │ │ │ ├── Shell.html │ │ │ └── TestNG.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── transformers │ │ ├── BuilderTransformer.html │ │ ├── PublisherTransformer.html │ │ ├── SCMTransformer.html │ │ ├── Transformer.html │ │ ├── class-use │ │ │ ├── BuilderTransformer.html │ │ │ ├── PublisherTransformer.html │ │ │ ├── SCMTransformer.html │ │ │ └── Transformer.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ └── utils │ │ ├── ActionUtil.html │ │ ├── PluginClass.html │ │ ├── PluginIgnoredClass.html │ │ ├── SCMUtil.html │ │ ├── class-use │ │ ├── ActionUtil.html │ │ ├── PluginClass.html │ │ ├── PluginIgnoredClass.html │ │ └── SCMUtil.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-18.html │ ├── index-19.html │ ├── index-2.html │ ├── index-20.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── script.js └── stylesheet.css ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── infostretch │ │ └── labs │ │ ├── actions │ │ ├── ConvertFolderAction.java │ │ ├── ConvertJobAction.java │ │ └── ConvertRootAction.java │ │ ├── plugins │ │ ├── AnsiblePlaybookBuilder.java │ │ ├── Ant.java │ │ ├── ArtifactArchiver.java │ │ ├── BatchFile.java │ │ ├── CheckStylePublisher.java │ │ ├── Git.java │ │ ├── JUnitResultArchiver.java │ │ ├── Mailer.java │ │ ├── Maven.java │ │ ├── NpmPackagesBuildWrapper.java │ │ ├── Plugins.java │ │ ├── Shell.java │ │ └── TestNG.java │ │ ├── transformers │ │ ├── BuilderTransformer.java │ │ ├── PublisherTransformer.java │ │ ├── SCMTransformer.java │ │ └── Transformer.java │ │ └── utils │ │ ├── ActionUtil.java │ │ ├── PluginClass.java │ │ ├── PluginIgnoredClass.java │ │ └── SCMUtil.java ├── resources │ ├── com │ │ └── infostretch │ │ │ └── labs │ │ │ └── actions │ │ │ ├── ConvertFolderAction │ │ │ ├── help-commitJFile.html │ │ │ ├── help-commitMessage.html │ │ │ ├── help-downStream.html │ │ │ ├── help-newName.html │ │ │ ├── help-sourceJob.html │ │ │ ├── index.jelly │ │ │ └── index.properties │ │ │ ├── ConvertJobAction │ │ │ ├── help-commitJFile.html │ │ │ ├── help-commitMessage.html │ │ │ ├── help-downStream.html │ │ │ ├── help-newName.html │ │ │ ├── index.jelly │ │ │ └── index.properties │ │ │ ├── ConvertRootAction │ │ │ ├── help-commitJFile.html │ │ │ ├── help-commitMessage.html │ │ │ ├── help-downStream.html │ │ │ ├── help-newName.html │ │ │ ├── help-sourceJob.html │ │ │ ├── index.jelly │ │ │ └── index.properties │ │ │ └── Messages.properties │ └── index.jelly └── webapp │ └── images │ ├── convert.png │ └── infostretch_logo.png └── test ├── java └── com │ └── infostretch │ └── labs │ ├── actions │ ├── ConvertFolderActionTest.java │ ├── ConvertJobActionTest.java │ └── ConvertRootActionTest.java │ └── plugins │ └── ShellTest.java └── resources └── xml ├── folder-freestyle-config.xml ├── freestyle-config.xml ├── shell-script-simple.xml └── shell-script-unstable-return.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/COMPATIBILITY.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | buildPlugin() 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/allclasses-frame.html -------------------------------------------------------------------------------- /docs/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertFolderAction.ActionFolderInjector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertFolderAction.ActionFolderInjector.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertFolderAction.ConvertFolderActionDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertFolderAction.ConvertFolderActionDescriptor.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertFolderAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertFolderAction.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertJobAction.ActionInjector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertJobAction.ActionInjector.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertJobAction.ConvertJobActionDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertJobAction.ConvertJobActionDescriptor.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertJobAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertJobAction.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertRootAction.ConvertRootActionDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertRootAction.ConvertRootActionDescriptor.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/ConvertRootAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/ConvertRootAction.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/Messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/Messages.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertFolderAction.ActionFolderInjector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertFolderAction.ActionFolderInjector.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertFolderAction.ConvertFolderActionDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertFolderAction.ConvertFolderActionDescriptor.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertFolderAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertFolderAction.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertJobAction.ActionInjector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertJobAction.ActionInjector.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertJobAction.ConvertJobActionDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertJobAction.ConvertJobActionDescriptor.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertJobAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertJobAction.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertRootAction.ConvertRootActionDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertRootAction.ConvertRootActionDescriptor.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/ConvertRootAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/ConvertRootAction.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/class-use/Messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/class-use/Messages.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/package-frame.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/package-summary.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/package-tree.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/actions/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/actions/package-use.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/AnsiblePlaybookBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/AnsiblePlaybookBuilder.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/Ant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/Ant.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/ArtifactArchiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/ArtifactArchiver.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/BatchFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/BatchFile.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/CheckStylePublisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/CheckStylePublisher.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/Git.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/Git.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/JUnitResultArchiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/JUnitResultArchiver.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/Mailer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/Mailer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/Maven.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/Maven.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/NpmPackagesBuildWrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/NpmPackagesBuildWrapper.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/Plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/Plugins.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/Shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/Shell.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/TestNG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/TestNG.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/AnsiblePlaybookBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/AnsiblePlaybookBuilder.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/Ant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/Ant.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/ArtifactArchiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/ArtifactArchiver.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/BatchFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/BatchFile.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/CheckStylePublisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/CheckStylePublisher.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/Git.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/Git.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/JUnitResultArchiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/JUnitResultArchiver.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/Mailer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/Mailer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/Maven.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/Maven.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/NpmPackagesBuildWrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/NpmPackagesBuildWrapper.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/Plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/Plugins.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/Shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/Shell.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/class-use/TestNG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/class-use/TestNG.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/package-frame.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/package-summary.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/package-tree.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/plugins/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/plugins/package-use.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/BuilderTransformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/BuilderTransformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/PublisherTransformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/PublisherTransformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/SCMTransformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/SCMTransformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/Transformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/Transformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/class-use/BuilderTransformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/class-use/BuilderTransformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/class-use/PublisherTransformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/class-use/PublisherTransformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/class-use/SCMTransformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/class-use/SCMTransformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/class-use/Transformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/class-use/Transformer.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/package-frame.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/package-summary.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/package-tree.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/transformers/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/transformers/package-use.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/ActionUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/ActionUtil.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/PluginClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/PluginClass.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/PluginIgnoredClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/PluginIgnoredClass.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/SCMUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/SCMUtil.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/class-use/ActionUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/class-use/ActionUtil.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/class-use/PluginClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/class-use/PluginClass.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/class-use/PluginIgnoredClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/class-use/PluginIgnoredClass.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/class-use/SCMUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/class-use/SCMUtil.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/package-frame.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/package-summary.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/package-tree.html -------------------------------------------------------------------------------- /docs/com/infostretch/labs/utils/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/com/infostretch/labs/utils/package-use.html -------------------------------------------------------------------------------- /docs/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/constant-values.html -------------------------------------------------------------------------------- /docs/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/deprecated-list.html -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-1.html -------------------------------------------------------------------------------- /docs/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-10.html -------------------------------------------------------------------------------- /docs/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-11.html -------------------------------------------------------------------------------- /docs/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-12.html -------------------------------------------------------------------------------- /docs/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-13.html -------------------------------------------------------------------------------- /docs/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-14.html -------------------------------------------------------------------------------- /docs/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-15.html -------------------------------------------------------------------------------- /docs/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-16.html -------------------------------------------------------------------------------- /docs/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-17.html -------------------------------------------------------------------------------- /docs/index-files/index-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-18.html -------------------------------------------------------------------------------- /docs/index-files/index-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-19.html -------------------------------------------------------------------------------- /docs/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-2.html -------------------------------------------------------------------------------- /docs/index-files/index-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-20.html -------------------------------------------------------------------------------- /docs/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-3.html -------------------------------------------------------------------------------- /docs/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-4.html -------------------------------------------------------------------------------- /docs/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-5.html -------------------------------------------------------------------------------- /docs/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-6.html -------------------------------------------------------------------------------- /docs/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-7.html -------------------------------------------------------------------------------- /docs/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-8.html -------------------------------------------------------------------------------- /docs/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index-files/index-9.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/overview-frame.html -------------------------------------------------------------------------------- /docs/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/overview-summary.html -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/package-list -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/actions/ConvertFolderAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/actions/ConvertFolderAction.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/actions/ConvertJobAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/actions/ConvertJobAction.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/actions/ConvertRootAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/actions/ConvertRootAction.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/AnsiblePlaybookBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/AnsiblePlaybookBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/Ant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/Ant.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/ArtifactArchiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/ArtifactArchiver.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/BatchFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/BatchFile.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/CheckStylePublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/CheckStylePublisher.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/Git.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/Git.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/JUnitResultArchiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/JUnitResultArchiver.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/Mailer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/Mailer.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/Maven.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/Maven.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/NpmPackagesBuildWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/NpmPackagesBuildWrapper.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/Plugins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/Plugins.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/Shell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/Shell.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/plugins/TestNG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/plugins/TestNG.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/transformers/BuilderTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/transformers/BuilderTransformer.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/transformers/PublisherTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/transformers/PublisherTransformer.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/transformers/SCMTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/transformers/SCMTransformer.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/transformers/Transformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/transformers/Transformer.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/utils/ActionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/utils/ActionUtil.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/utils/PluginClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/utils/PluginClass.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/utils/PluginIgnoredClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/utils/PluginIgnoredClass.java -------------------------------------------------------------------------------- /src/main/java/com/infostretch/labs/utils/SCMUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/java/com/infostretch/labs/utils/SCMUtil.java -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-commitJFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-commitJFile.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-commitMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-commitMessage.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-downStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-downStream.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-newName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-newName.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-sourceJob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/help-sourceJob.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/index.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertFolderAction/index.properties -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-commitJFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-commitJFile.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-commitMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-commitMessage.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-downStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-downStream.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-newName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertJobAction/help-newName.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertJobAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertJobAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertJobAction/index.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertJobAction/index.properties -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-commitJFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-commitJFile.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-commitMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-commitMessage.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-downStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-downStream.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-newName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-newName.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-sourceJob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/help-sourceJob.html -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/ConvertRootAction/index.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/ConvertRootAction/index.properties -------------------------------------------------------------------------------- /src/main/resources/com/infostretch/labs/actions/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/com/infostretch/labs/actions/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/webapp/images/convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/webapp/images/convert.png -------------------------------------------------------------------------------- /src/main/webapp/images/infostretch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/main/webapp/images/infostretch_logo.png -------------------------------------------------------------------------------- /src/test/java/com/infostretch/labs/actions/ConvertFolderActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/java/com/infostretch/labs/actions/ConvertFolderActionTest.java -------------------------------------------------------------------------------- /src/test/java/com/infostretch/labs/actions/ConvertJobActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/java/com/infostretch/labs/actions/ConvertJobActionTest.java -------------------------------------------------------------------------------- /src/test/java/com/infostretch/labs/actions/ConvertRootActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/java/com/infostretch/labs/actions/ConvertRootActionTest.java -------------------------------------------------------------------------------- /src/test/java/com/infostretch/labs/plugins/ShellTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/java/com/infostretch/labs/plugins/ShellTest.java -------------------------------------------------------------------------------- /src/test/resources/xml/folder-freestyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/resources/xml/folder-freestyle-config.xml -------------------------------------------------------------------------------- /src/test/resources/xml/freestyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/resources/xml/freestyle-config.xml -------------------------------------------------------------------------------- /src/test/resources/xml/shell-script-simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/resources/xml/shell-script-simple.xml -------------------------------------------------------------------------------- /src/test/resources/xml/shell-script-unstable-return.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/convert-to-pipeline-plugin/HEAD/src/test/resources/xml/shell-script-unstable-return.xml --------------------------------------------------------------------------------