This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configuration_as_code: | |
tool: | |
nodejs: | |
installations: | |
- name: "nodejs-11" | |
home: "" | |
properties: | |
- installSource: | |
installers: | |
- nodeJSInstaller: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jenkins_1 | --> Handling ConfigurationAsCode configuration | |
jenkins_1 | Feb 09, 2019 9:08:39 AM io.jenkins.plugins.casc.impl.configurators.DataBoundConfigurator tryConstructor | |
jenkins_1 | INFO: Setting class jenkins.plugins.openstack.compute.JCloudsCloud.name = rhosp01-staging2 | |
jenkins_1 | Feb 09, 2019 9:08:39 AM io.jenkins.plugins.casc.impl.configurators.DataBoundConfigurator tryConstructor | |
jenkins_1 | INFO: Setting class jenkins.plugins.openstack.compute.JCloudsCloud.endPointUrl = http://172.29.9.208:5000/v2.0 | |
jenkins_1 | Feb 09, 2019 9:08:39 AM io.jenkins.plugins.casc.impl.configurators.DataBoundConfigurator tryConstructor | |
jenkins_1 | INFO: Setting class jenkins.plugins.openstack.compute.JCloudsCloud.ignoreSsl = false | |
jenkins_1 | Feb 09, 2019 9:08:39 AM io.jenkins.plugins.casc.impl.configurators.DataBoundConfigurator tryConstructor | |
jenkins_1 | INFO: Setting class jenkins.plugins.openstack.compute.JCloudsCloud.zone = regionOne | |
jenkins_1 | Feb 09, 2019 9:08:39 AM io.jenkins.plugins.casc.impl.configu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
security: | |
realm: jenkins_database | |
adminPassword: admin | |
credentials: | |
my-github-api-cred: | |
type: userpass | |
username: <YOUR_GITHUB_USER> | |
password: <YOUR_GITHUB_PASS> | |
job_dsl_scripts: | |
- | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def manager = org.jenkins.plugins.lockableresources.LockableResourcesManager.get() | |
def resources = manager.getResources().findAll{ | |
!it.locked | |
} | |
resources.each{ | |
manager.getResources().remove(it) | |
} | |
manager.save() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>com.github.odavid.maven.plugins</groupId> | |
<artifactId>mixin-maven-plugin</artifactId> | |
<version>0.1-alpha-22</version> | |
<extensions>true</extensions> | |
<configuration> | |
<mixins> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>mixin-example</groupId> | |
<artifactId>mixin-consumer</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>${project.groupId}:${project.artifactId}</name> | |
<build> | |
<plugins> | |
<plugin> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>mixin-example</groupId> | |
<artifactId>echo-mixin</artifactId> | |
<packaging>pom</packaging> | |
<version>1.0.0-SNAPSHOT</version> | |
<name>${project.groupId}:${project.artifactId}</name> | |
<properties> | |
<message>Default Message of Mixin</message> | |
</properties> |