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 9, 2024
1 parent 2f828b7 commit 735632a
Show file tree
Hide file tree
Showing 4 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 @@ -64,7 +64,7 @@ subprojects { project ->
annotationProcessor("org.projectlombok:lombok")
testAnnotationProcessor("org.projectlombok:lombok")

testImplementation("org.codehaus.groovy:groovy")
testImplementation("org.apache.groovy:groovy")
testImplementation("org.spockframework:spock-core")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.spockframework:spock-spring")
Expand Down
2 changes: 1 addition & 1 deletion front50-redis/front50-redis.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation project(":front50-api")
implementation "io.spinnaker.kork:kork-exceptions"

implementation("org.codehaus.groovy:groovy")
implementation("org.apache.groovy:groovy")

implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-actuator"
Expand Down
2 changes: 1 addition & 1 deletion front50-test/front50-test.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation project(":front50-core")
implementation project(":front50-s3")

implementation "org.codehaus.groovy:groovy"
implementation "org.apache.groovy:groovy"
implementation "org.spockframework:spock-core"
implementation "com.amazonaws:aws-java-sdk-s3"
}
Expand Down
2 changes: 1 addition & 1 deletion front50-web/front50-web.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
testImplementation project(":front50-sql")
testImplementation "io.spinnaker.kork:kork-sql-test"
testImplementation "io.reactivex:rxjava"
testImplementation "org.codehaus.groovy:groovy-json"
testImplementation "org.apache.groovy:groovy-json"

// Add each included cloud provider project as a runtime dependency
gradle.includedProviderProjects.each {
Expand Down

0 comments on commit 735632a

Please sign in to comment.