-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathbuild.gradle
36 lines (30 loc) · 1.05 KB
/
build.gradle
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
plugins {
id "io.micronaut.build.internal.convention-library"
id "org.jetbrains.kotlin.jvm"
}
dependencies {
annotationProcessor project(":inject-java")
annotationProcessor project(":graal")
api project(":context")
api project(":core-reactive")
implementation libs.managed.reactor
compileOnly libs.kotlinx.coroutines.core
compileOnly libs.kotlinx.coroutines.reactor
compileOnly libs.managed.jackson.annotations
testCompileOnly project(":inject-groovy")
testAnnotationProcessor project(":inject-java")
testImplementation project(":jackson-databind")
testImplementation project(":inject")
testImplementation project(":runtime")
testImplementation(libs.managed.logback.classic)
}
tasks.named("compileKotlin") {
kotlinOptions.jvmTarget = "17"
}
//compileJava.options.fork = true
//compileJava.options.forkOptions.jvmArgs = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005']
spotless {
java {
targetExclude '**/io/micronaut/http/uri/QueryStringDecoder.java'
}
}