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 92c76d4 commit d23064cCopy full SHA for d23064c
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.authorization.google'
22
- pluginVersion = '3.1.1'
23
- goCdVersion = '20.9.0'
+ pluginVersion = '4.0.0'
+ goCdVersion = '22.1.0'
24
name = 'Google oauth authorization plugin'
25
description = 'Google oauth authorization plugin 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