Skip to content

Commit

Permalink
chore(dependencies): Autobump korkVersion (#1443)
Browse files Browse the repository at this point in the history
* chore(dependencies): Autobump korkVersion

* refactor(dependency): replace groovy coordinates during upgrade of groovy 4.x

Replacing the groovy coordinates from `org.codehaus.groovy` to `org.apache.groovy` supported by groovy 4.x and above versions. Upgrading `@Wither` to `@With`, as suggested [here](https://projectlombok.org/features/With).

---------

Co-authored-by: root <root@b3e368603f7c>
Co-authored-by: j-sandy <[email protected]>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Sep 24, 2024
1 parent 8b3e7bb commit 5c62fee
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subprojects {
annotationProcessor "org.projectlombok:lombok"
testAnnotationProcessor "org.projectlombok:lombok"

implementation "org.codehaus.groovy:groovy"
implementation "org.apache.groovy:groovy"
implementation "com.github.ben-manes.caffeine:guava"
implementation "com.netflix.spectator:spectator-api"
implementation "org.slf4j:slf4j-api"
Expand Down
2 changes: 1 addition & 1 deletion echo-core/echo-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ dependencies {

testImplementation "org.spockframework:spock-spring"
testImplementation "org.springframework:spring-test"
testImplementation "org.codehaus.groovy:groovy-json"
testImplementation "org.apache.groovy:groovy-json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.Value;
import lombok.experimental.Wither;
import lombok.With;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -36,7 +36,7 @@
*/
@JsonDeserialize(builder = Trigger.TriggerBuilder.class)
@Builder(toBuilder = true)
@Wither
@With
@ToString(
of = {
"id",
Expand Down
2 changes: 1 addition & 1 deletion echo-notifications/echo-notifications.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-freemarker"
implementation "org.jsoup:jsoup:1.8.3"
implementation "com.atlassian.commonmark:commonmark:0.9.0"
implementation "org.codehaus.groovy:groovy-json"
implementation "org.apache.groovy:groovy-json"
implementation "io.cloudevents:cloudevents-http-basic:3.0.0"
implementation "io.cloudevents:cloudevents-json-jackson:3.0.0"
implementation ("dev.cdevents:cdevents-sdk-java:0.3.1")
Expand Down
2 changes: 1 addition & 1 deletion echo-pipelinetriggers/echo-pipelinetriggers.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies {
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.assertj:assertj-core"
testImplementation "org.codehaus.groovy:groovy-json"
testImplementation "org.apache.groovy:groovy-json"

testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fiatVersion=1.49.0
korkVersion=7.237.0
korkVersion=7.238.0
kotlinVersion=1.6.21
org.gradle.parallel=true
spinnakerGradleVersion=8.32.1
Expand Down

0 comments on commit 5c62fee

Please sign in to comment.