├── .gitignore ├── .project ├── Jenkinsfile ├── LICENSE ├── README.md ├── pom.xml ├── readme.png ├── src └── main │ ├── java │ └── io │ │ └── chef │ │ └── jenkinsci │ │ └── plugins │ │ └── chef_cookbook │ │ ├── ChefCookbookCookstyleStep.java │ │ ├── ChefCookbookFoodcriticStep.java │ │ ├── ChefCookbookFunctionalStep.java │ │ ├── ChefCookbookStep.java │ │ ├── ChefCookbookUnitStep.java │ │ └── ChefDKInstallation.java │ └── resources │ ├── index.jelly │ └── io │ └── chef │ └── jenkinsci │ └── plugins │ └── chef_automate │ ├── ChefCookbookCookstyleStep │ └── config.jelly │ ├── ChefCookbookLintStep │ └── config.jelly │ └── ChefDKInstallation │ ├── config.jelly │ └── help-home.html └── support ├── Dockerfile ├── Jenkinsfile └── dot-kitchen.docker.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .settings/ 3 | target/ 4 | work/ 5 | .vscode/ -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/.project -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/readme.png -------------------------------------------------------------------------------- /src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookCookstyleStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookCookstyleStep.java -------------------------------------------------------------------------------- /src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookFoodcriticStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookFoodcriticStep.java -------------------------------------------------------------------------------- /src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookFunctionalStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookFunctionalStep.java -------------------------------------------------------------------------------- /src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookStep.java -------------------------------------------------------------------------------- /src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookUnitStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefCookbookUnitStep.java -------------------------------------------------------------------------------- /src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefDKInstallation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/java/io/chef/jenkinsci/plugins/chef_cookbook/ChefDKInstallation.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefCookbookCookstyleStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefCookbookCookstyleStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefCookbookLintStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefCookbookLintStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefDKInstallation/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefDKInstallation/config.jelly -------------------------------------------------------------------------------- /src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefDKInstallation/help-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/src/main/resources/io/chef/jenkinsci/plugins/chef_automate/ChefDKInstallation/help-home.html -------------------------------------------------------------------------------- /support/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/support/Dockerfile -------------------------------------------------------------------------------- /support/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/support/Jenkinsfile -------------------------------------------------------------------------------- /support/dot-kitchen.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/chef-cookbook-pipeline-plugin/HEAD/support/dot-kitchen.docker.yml --------------------------------------------------------------------------------