-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
50 lines (40 loc) · 2.24 KB
/
build.gradle.kts
File metadata and controls
50 lines (40 loc) · 2.24 KB
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
plugins {
id("org.openrewrite.build.recipe-library") version "latest.release"
}
group = "org.openrewrite.recipe"
description = "Migrate between Dropwizard versions. Automatically."
recipeDependencies {
parserClasspath("org.springframework.boot:spring-boot-test:2.+")
parserClasspath("org.springframework.boot:spring-boot-test-autoconfigure:2.+")
parserClasspath("org.springframework:spring-core:5.+")
parserClasspath("org.springframework:spring-web:5.+")
}
val rewriteVersion = rewriteRecipe.rewriteVersion.get()
dependencies {
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-gradle")
implementation("org.openrewrite:rewrite-properties")
implementation("org.openrewrite:rewrite-yaml")
implementation("org.openrewrite.recipe:rewrite-hibernate:${rewriteVersion}")
implementation("org.openrewrite.recipe:rewrite-migrate-java:${rewriteVersion}")
implementation("org.openrewrite.recipe:rewrite-static-analysis:${rewriteVersion}")
implementation("org.openrewrite.recipe:rewrite-testing-frameworks:${rewriteVersion}")
runtimeOnly("org.openrewrite:rewrite-java-21")
testImplementation("org.openrewrite:rewrite-test")
testRuntimeOnly("io.dropwizard.metrics:metrics-annotation:4.1.+")
testRuntimeOnly("io.dropwizard.metrics:metrics-healthchecks:4.1.+")
testRuntimeOnly("io.dropwizard:dropwizard-testing:1.3.29")
testRuntimeOnly("jakarta.servlet:jakarta.servlet-api:5.+")
testRuntimeOnly("jakarta.ws.rs:jakarta.ws.rs-api:2.1.6")
testRuntimeOnly("javax.persistence:javax.persistence-api:2.2")
testRuntimeOnly("net.sourceforge.argparse4j:argparse4j:0.9.0")
testRuntimeOnly("org.eclipse.jetty:jetty-server:11.+")
testRuntimeOnly("org.projectlombok:lombok:1.18.+")
testRuntimeOnly("org.springframework.boot:spring-boot-starter-actuator:2.5.+")
testRuntimeOnly("org.springframework.boot:spring-boot-starter-test:2.5.+")
testRuntimeOnly("org.springframework.boot:spring-boot-starter-web:2.5.+")
}