We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11c6336 commit 0c75de4Copy full SHA for 0c75de4
build.gradle
@@ -20,8 +20,8 @@ apply from: "https://raw.githubusercontent.com/gocd/gocd-plugin-gradle-task-help
20
21
gocdPlugin {
22
id = 'cd.go.contrib.elasticagent.kubernetes'
23
- pluginVersion = '4.1.1'
24
- goCdVersion = '21.4.0'
+ pluginVersion = '5.0.0'
+ goCdVersion = '22.1.0'
25
name = 'Kubernetes Elastic Agent Plugin'
26
description = 'Kubernetes Based Elastic Agent Plugins for GoCD'
27
vendorName = 'Thoughtworks, Inc.'
@@ -47,8 +47,13 @@ repositories {
47
mavenLocal()
48
}
49
50
+java {
51
+ sourceCompatibility = JavaVersion.VERSION_17
52
+ targetCompatibility = JavaVersion.VERSION_17
53
+}
54
+
55
tasks.withType(JavaCompile).configureEach {
- options.release = 11
56
+ options.release = 17
57
58
59
ext {
0 commit comments