Skip to content

Commit

Permalink
Target Java 17
Browse files Browse the repository at this point in the history
Bundled plugins can support only latest GoCD version
  • Loading branch information
chadlwilson committed May 25, 2024
1 parent 489ba0a commit a49c513
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ apply from: "https://raw.githubusercontent.com/gocd/gocd-plugin-gradle-task-help

gocdPlugin {
id = 'cd.go.authentication.ldap'
pluginVersion = '2.2.2'
goCdVersion = '20.9.0'
pluginVersion = '2.3.0'
goCdVersion = '22.1.0'
name = 'LDAP Authentication Plugin for GoCD'
description = 'LDAP Authentication Plugin for GoCD'
vendorName = 'Thoughtworks, Inc.'
Expand Down Expand Up @@ -51,8 +51,8 @@ repositories {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

sourceSets {
Expand Down Expand Up @@ -81,7 +81,7 @@ ext {
dependencies {
compileOnly project.deps.gocdPluginApi
implementation group: 'com.google.code.gson', name: 'gson', version: '2.11.0'
implementation group: 'cd.go.plugin.base', name: 'gocd-plugin-base', version: '0.0.6'
implementation group: 'cd.go.plugin.base', name: 'gocd-plugin-base', version: '0.0.7'
implementation group: 'org.apache.directory.api', name: 'api-ldap-client-api', version: '1.0.3'
constraints {
implementation('org.apache.mina:mina-core:2.0.25') {
Expand Down

0 comments on commit a49c513

Please sign in to comment.