Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
Loading