├── .github ├── CODEOWNERS └── workflows │ └── jenkins-security-scan.yml ├── .gitignore ├── Jenkinsfile ├── README.md ├── pom.xml ├── src ├── main │ ├── java │ │ └── hudson │ │ │ └── plugins │ │ │ └── powershell │ │ │ ├── PowerShell.java │ │ │ └── PowerShellInstallation.java │ ├── resources │ │ ├── hudson │ │ │ └── plugins │ │ │ │ └── powershell │ │ │ │ ├── PowerShell │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── config_fr.properties │ │ │ │ ├── help-stopOnError.html │ │ │ │ ├── help-unstableReturn.html │ │ │ │ └── help-useProfile.html │ │ │ │ └── PowerShellInstallation │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help-home.html │ │ └── index.jelly │ └── webapp │ │ ├── env-vars.html │ │ ├── env-vars_fr.html │ │ ├── help.html │ │ └── help_fr.html └── test │ └── java │ └── hudson │ └── plugins │ └── powershell │ └── PowerShellTest.java └── usage_example.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkinsci/powershell-plugin-developers 2 | 3 | -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/powershell/PowerShell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/java/hudson/plugins/powershell/PowerShell.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/powershell/PowerShellInstallation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/java/hudson/plugins/powershell/PowerShellInstallation.java -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShell/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShell/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShell/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShell/config.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShell/config_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShell/config_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShell/help-stopOnError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShell/help-stopOnError.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShell/help-unstableReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShell/help-unstableReturn.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShell/help-useProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShell/help-useProfile.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShellInstallation/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShellInstallation/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShellInstallation/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShellInstallation/config.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/powershell/PowerShellInstallation/help-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/hudson/plugins/powershell/PowerShellInstallation/help-home.html -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/webapp/env-vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/webapp/env-vars.html -------------------------------------------------------------------------------- /src/main/webapp/env-vars_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/webapp/env-vars_fr.html -------------------------------------------------------------------------------- /src/main/webapp/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/webapp/help.html -------------------------------------------------------------------------------- /src/main/webapp/help_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/main/webapp/help_fr.html -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/powershell/PowerShellTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/src/test/java/hudson/plugins/powershell/PowerShellTest.java -------------------------------------------------------------------------------- /usage_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/powershell-plugin/HEAD/usage_example.png --------------------------------------------------------------------------------