Skip to content

Commit

Permalink
Adopt rewrite-bom (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek authored Nov 27, 2024
1 parent 7e7a2b2 commit fc20516
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,18 @@ dependencies {
compileOnly("org.projectlombok:lombok:latest.release")
annotationProcessor("org.projectlombok:lombok:latest.release")

implementation("org.openrewrite:rewrite-java:${rewriteVersion}")
implementation("org.openrewrite:rewrite-maven:${rewriteVersion}")
implementation("org.openrewrite:rewrite-properties:${rewriteVersion}")
implementation(platform("org.openrewrite:rewrite-bom:${rewriteVersion}"))
implementation("org.openrewrite:rewrite-java")
implementation("org.openrewrite:rewrite-maven")
implementation("org.openrewrite:rewrite-properties")

implementation("org.openrewrite.recipe:rewrite-java-dependencies:${rewriteVersion}")
implementation("org.openrewrite.recipe:rewrite-migrate-java:${rewriteVersion}")

runtimeOnly("org.openrewrite:rewrite-java-17:${rewriteVersion}")
runtimeOnly("org.openrewrite:rewrite-java-17")

testImplementation("org.openrewrite:rewrite-test:${rewriteVersion}")
testImplementation("org.openrewrite:rewrite-java-tck:${rewriteVersion}")
testImplementation("org.openrewrite:rewrite-test")
testImplementation("org.openrewrite:rewrite-java-tck")

testImplementation("javax.xml.ws:jaxws-api:2.3.1")
testImplementation("jakarta.xml.ws:jakarta.xml.ws-api:3.0.0")
Expand All @@ -41,7 +42,7 @@ dependencies {

testImplementation("javax:javaee-api:7.0")

testRuntimeOnly("org.openrewrite:rewrite-java-17:${rewriteVersion}")
testRuntimeOnly("org.openrewrite:rewrite-java-17")

testRuntimeOnly("io.quarkus:quarkus-grpc:1.13.+")
testRuntimeOnly("io.quarkus:quarkus-qute:1.13.+")
Expand Down

0 comments on commit fc20516

Please sign in to comment.