We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d565f commit 3631a35Copy full SHA for 3631a35
build.gradle
@@ -19,8 +19,8 @@ apply from: "https://raw.githubusercontent.com/gocd/gocd-plugin-gradle-task-help
19
20
gocdPlugin {
21
id = 'script-executor'
22
- pluginVersion = '1.0.3'
23
- goCdVersion = '20.1.0'
+ pluginVersion = '2.0.0'
+ goCdVersion = '22.1.0'
24
name = 'Script Executor'
25
description = 'Thoughtworks GoCD plugin to run scripts'
26
vendorName = 'Srinivas Upadhya'
@@ -38,8 +38,13 @@ gocdPlugin {
38
assetsToRelease = [project.tasks.jar]
39
}
40
41
+java {
42
+ sourceCompatibility = JavaVersion.VERSION_17
43
+ targetCompatibility = JavaVersion.VERSION_17
44
+}
45
+
46
tasks.withType(JavaCompile).configureEach {
- options.release = 11
47
+ options.release = 17
48
49
50
allprojects {
0 commit comments