├── .github ├── stale.yml └── workflows │ └── jenkins-security-scan.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── imgs ├── activate_build.png ├── build_version.png ├── hostname.png ├── inf_cartridge.png ├── left_nav.png ├── oc_credentials.png ├── oc_version.png ├── proxy_host.png ├── proxy_password.png ├── proxy_port.png ├── proxy_username.png ├── sources.png ├── ssl_validation.png ├── tf_credentials.png └── tmp_dir.png ├── pom.xml ├── spotbugs-exclude.xml └── src └── main ├── java └── org │ └── jenkinsci │ └── plugins │ └── osfbuildersuiteforsfcc │ └── deploy │ ├── DeployBuilder.java │ ├── OpenCommerceAPI.java │ └── repeatable │ ├── ExcludePattern.java │ └── SourcePath.java ├── resources ├── index.jelly └── org │ └── jenkinsci │ └── plugins │ └── osfbuildersuiteforsfcc │ └── deploy │ ├── DeployBuilder │ ├── config.jelly │ └── global.jelly │ └── repeatable │ ├── ExcludePattern │ └── config.jelly │ └── SourcePath │ └── config.jelly └── webapp └── help ├── globalConfig-disableSSLValidation.html ├── globalConfig-httpProxyCredentialsId.html ├── projectConfig-activateBuild.html ├── projectConfig-buildVersion.html ├── projectConfig-createBuildInfoCartridge.html ├── projectConfig-hostname.html ├── projectConfig-ocCredentialsId.html ├── projectConfig-ocVersion.html ├── projectConfig-sources-excludePatterns.html ├── projectConfig-sources-sourcePath.html ├── projectConfig-sources.html ├── projectConfig-tempDirectory.html └── projectConfig-tfCredentialsId.html /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | buildPlugin() 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/README.md -------------------------------------------------------------------------------- /imgs/activate_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/activate_build.png -------------------------------------------------------------------------------- /imgs/build_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/build_version.png -------------------------------------------------------------------------------- /imgs/hostname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/hostname.png -------------------------------------------------------------------------------- /imgs/inf_cartridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/inf_cartridge.png -------------------------------------------------------------------------------- /imgs/left_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/left_nav.png -------------------------------------------------------------------------------- /imgs/oc_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/oc_credentials.png -------------------------------------------------------------------------------- /imgs/oc_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/oc_version.png -------------------------------------------------------------------------------- /imgs/proxy_host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/proxy_host.png -------------------------------------------------------------------------------- /imgs/proxy_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/proxy_password.png -------------------------------------------------------------------------------- /imgs/proxy_port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/proxy_port.png -------------------------------------------------------------------------------- /imgs/proxy_username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/proxy_username.png -------------------------------------------------------------------------------- /imgs/sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/sources.png -------------------------------------------------------------------------------- /imgs/ssl_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/ssl_validation.png -------------------------------------------------------------------------------- /imgs/tf_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/tf_credentials.png -------------------------------------------------------------------------------- /imgs/tmp_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/imgs/tmp_dir.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /spotbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/spotbugs-exclude.xml -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/DeployBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/DeployBuilder.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/OpenCommerceAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/OpenCommerceAPI.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/ExcludePattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/ExcludePattern.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/SourcePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/java/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/SourcePath.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/DeployBuilder/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/DeployBuilder/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/DeployBuilder/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/DeployBuilder/global.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/ExcludePattern/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/ExcludePattern/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/SourcePath/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/osfbuildersuiteforsfcc/deploy/repeatable/SourcePath/config.jelly -------------------------------------------------------------------------------- /src/main/webapp/help/globalConfig-disableSSLValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/globalConfig-disableSSLValidation.html -------------------------------------------------------------------------------- /src/main/webapp/help/globalConfig-httpProxyCredentialsId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/globalConfig-httpProxyCredentialsId.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-activateBuild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-activateBuild.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-buildVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-buildVersion.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-createBuildInfoCartridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-createBuildInfoCartridge.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-hostname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-hostname.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-ocCredentialsId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-ocCredentialsId.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-ocVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-ocVersion.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-sources-excludePatterns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-sources-excludePatterns.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-sources-sourcePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-sources-sourcePath.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-sources.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-tempDirectory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-tempDirectory.html -------------------------------------------------------------------------------- /src/main/webapp/help/projectConfig-tfCredentialsId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/osf-builder-suite-for-sfcc-deploy-plugin/HEAD/src/main/webapp/help/projectConfig-tfCredentialsId.html --------------------------------------------------------------------------------