forked from openrewrite/rewrite-dropwizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
37 lines (29 loc) · 1.48 KB
/
build.gradle.kts
File metadata and controls
37 lines (29 loc) · 1.48 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
plugins {
id("org.openrewrite.build.recipe-library") version "latest.release"
}
group = "org.openrewrite.recipe"
description = "Migrate between Dropwizard versions. Automatically."
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")
runtimeOnly("org.openrewrite:rewrite-java-17")
testImplementation("org.junit.jupiter:junit-jupiter-api:latest.release")
testImplementation("org.junit.jupiter:junit-jupiter-params:latest.release")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:latest.release")
testImplementation("org.openrewrite:rewrite-test")
testRuntimeOnly("io.dropwizard.metrics:metrics-annotation:4.1.+")
testRuntimeOnly("io.dropwizard.metrics:metrics-healthchecks:4.1.+")
testRuntimeOnly("org.springframework.boot:spring-boot-starter-actuator:2.5.+")
testRuntimeOnly("javax.persistence:javax.persistence-api:2.2")
testRuntimeOnly("org.projectlombok:lombok:1.18.+")
testRuntimeOnly("net.sourceforge.argparse4j:argparse4j:0.9.0")
}
recipeDependencies {
}