Skip to content

Commit

Permalink
refactor(dependency): replace groovy coordinates during upgrade of gr…
Browse files Browse the repository at this point in the history
…oovy 4.x

Replacing the groovy coordinates from `org.codehaus.groovy` to `org.apache.groovy` supported by groovy 4.x and above versions.
  • Loading branch information
j-sandy committed Sep 5, 2024
1 parent f745fcc commit fcc9fc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ allprojects {
annotationProcessor "org.projectlombok:lombok"
testAnnotationProcessor "org.projectlombok:lombok"

implementation "org.codehaus.groovy:groovy"
implementation "org.apache.groovy:groovy"
implementation "net.logstash.logback:logstash-logback-encoder"
implementation "org.jetbrains.kotlin:kotlin-reflect"

Expand Down
2 changes: 1 addition & 1 deletion gate-oauth2/gate-oauth2.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation "io.spinnaker.fiat:fiat-api:$fiatVersion"
implementation "io.spinnaker.kork:kork-exceptions"
implementation "io.spinnaker.kork:kork-security"
implementation "org.codehaus.groovy:groovy-json"
implementation "org.apache.groovy:groovy-json"
implementation "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure"
implementation "org.springframework.session:spring-session-core"
}
4 changes: 2 additions & 2 deletions gate-web/gate-web.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
implementation "redis.clients:jedis"

implementation "commons-io:commons-io"
implementation "org.codehaus.groovy:groovy-templates"
implementation "org.apache.groovy:groovy-templates"
implementation "org.springframework.session:spring-session-data-redis"
implementation "de.huxhorn.sulky:de.huxhorn.sulky.ulid"
implementation "org.apache.commons:commons-lang3"
Expand Down Expand Up @@ -76,7 +76,7 @@ dependencies {
testImplementation "com.unboundid:unboundid-ldapsdk"
testImplementation "io.spinnaker.kork:kork-jedis-test"
testImplementation "io.spinnaker.kork:kork-test"
testImplementation "org.codehaus.groovy:groovy-json"
testImplementation "org.apache.groovy:groovy-json"
testRuntimeOnly "io.spinnaker.kork:kork-retrofit"

// Add each included authz provider as a runtime dependency
Expand Down

0 comments on commit fcc9fc1

Please sign in to comment.