Skip to content

Commit

Permalink
Relocate quarkus-updates into META-INF.rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Feb 27, 2024
1 parent f7ca75d commit 910d1ae
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ dependencies {

runtimeOnly("ai.timefold.solver:timefold-solver-migration:latest.release")
runtimeOnly("io.quarkus:quarkus-update-recipes:latest.release")
runtimeOnly("io.quarkus:quarkus-update-recipes:latest.release:core")
runtimeOnly("org.axonframework:axon-migration:latest.release")
runtimeOnly("tech.picnic.error-prone-support:error-prone-contrib:latest.release")

testImplementation("org.openrewrite:rewrite-java")
testImplementation("org.openrewrite:rewrite-test")

testImplementation("io.quarkus:quarkus-update-recipes:latest.release")
testImplementation("tech.picnic.error-prone-support:error-prone-contrib:latest.release")
testImplementation("org.junit.jupiter:junit-jupiter-engine:latest.release")

Expand All @@ -36,13 +34,13 @@ tasks.withType<ShadowJar> {
archiveClassifier.set("")
dependencies {
include(dependency("ai.timefold.solver:timefold-solver-migration"))
include(dependency("io.quarkus:quarkus-update-recipes:latest.release"))
include(dependency("io.quarkus:quarkus-update-recipes:latest.release:core"))
include(dependency("io.quarkus:quarkus-update-recipes:.*"))
include(dependency("org.axonframework:axon-migration"))
include(dependency("tech.picnic.error-prone-support:error-prone-contrib"))
}
// Binary files for ErrorProne; not needed for recipes
exclude("**/*.refaster")
// Redeclares existing Quarkus and OpenRewrite recipes
exclude("**/ToLatest9.yml")
relocate("quarkus-updates", "META-INF.rewrite")
}

0 comments on commit 910d1ae

Please sign in to comment.