Jenkins Development with Gradle: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Jenkins =Overview=") |
|||
Line 3: | Line 3: | ||
=Overview= | =Overview= | ||
=build.gradle= | |||
<syntaxhighlight lang='groovy'> | |||
plugins { | |||
id 'groovy' | |||
} | |||
repositories { | |||
mavenCentral() | |||
} | |||
dependencies { | |||
implementation 'org.codehaus.groovy:groovy-all:3.0.7' | |||
implementation 'org.eclipse.hudson:hudson-core:3.2.1' | |||
implementation 'com.cloudbees:groovy-cps:1.31' | |||
} | |||
</syntaxhighlight> |
Revision as of 19:35, 26 March 2021
Internal
Overview
build.gradle
plugins {
id 'groovy'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.7'
implementation 'org.eclipse.hudson:hudson-core:3.2.1'
implementation 'com.cloudbees:groovy-cps:1.31'
}