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 2ad5e40 commit d8ffd2aCopy full SHA for d8ffd2a
build.gradle
@@ -19,8 +19,8 @@ apply from: "https://raw.githubusercontent.com/gocd/gocd-plugin-gradle-task-help
19
20
gocdPlugin {
21
id = 'cd.go.contrib.elastic-agent.docker'
22
- pluginVersion = '3.4.0'
23
- goCdVersion = '21.4.0'
+ pluginVersion = '4.0.0'
+ goCdVersion = '22.1.0'
24
name = 'Docker Elastic Agent Plugin'
25
description = 'Docker Based Elastic Agent Plugins for GoCD'
26
vendorName = 'Thoughtworks, Inc.'
@@ -46,8 +46,13 @@ repositories {
46
mavenLocal()
47
}
48
49
+java {
50
+ sourceCompatibility = JavaVersion.VERSION_17
51
+ targetCompatibility = JavaVersion.VERSION_17
52
+}
53
+
54
tasks.withType(JavaCompile).configureEach {
- options.release = 11
55
+ options.release = 17
56
57
58
ext {
0 commit comments