Jenkins Development with Gradle: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 1: Line 1:
=Internal=
=Internal=
* [[Jenkins#Subjects|Jenkins]]
* [[Jenkins#Subjects|Jenkins]]
* [[Gradle]]


=Overview=
=Overview=

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'
}