-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle.kts
54 lines (41 loc) · 1.96 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
plugins {
id("org.openrewrite.build.recipe-library") version "latest.release"
}
group = "org.openrewrite.recipe"
description = "Migrate between major Quarkus versions. Automatically."
val rewriteVersion = if(project.hasProperty("releasing")) {
"latest.release"
} else {
"latest.integration"
}
dependencies {
constraints {
implementation("com.fasterxml.woodstox:woodstox-core:6.5.0") {
because("Versions <= 6.3.1 contain vulnerabilities")
}
}
compileOnly("org.projectlombok:lombok:latest.release")
annotationProcessor("org.projectlombok:lombok:latest.release")
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")
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")
testImplementation("javax.xml.bind:jaxb-api:2.4.0-b180830.0359")
testImplementation("jakarta.xml.bind:jakarta.xml.bind-api:3.0.0")
testImplementation("javax:javaee-api:7.0")
testRuntimeOnly("org.openrewrite:rewrite-java-17")
testRuntimeOnly("io.quarkus:quarkus-grpc:1.13.+")
testRuntimeOnly("io.quarkus:quarkus-qute:1.13.+")
testRuntimeOnly("io.quarkus:quarkus-mongodb-client:1.13.+")
testRuntimeOnly("io.quarkus:quarkus-mongodb-panache:1.13.+")
testRuntimeOnly("io.quarkus:quarkus-hibernate-orm-panache:1.13.+")
testRuntimeOnly("io.quarkus:quarkus-hibernate-reactive-panache:1.13.+")
testRuntimeOnly("io.smallrye.reactive:mutiny:0.12.+")
}