-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathbuild.gradle
28 lines (23 loc) · 971 Bytes
/
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
dependencies {
annotationProcessor project(":inject-java")
api project(":inject")
api project(":core-reactive")
api dependencyVersion("validation")
compileOnly dependencyVersion("gorm")
compileOnly project(":http-server")
testImplementation dependencyVersion("spotbugs")
testAnnotationProcessor project(":inject-java")
testImplementation project(":inject")
testImplementation project(":http-server-netty")
testImplementation project(":websocket")
testImplementation project(":http-client")
testImplementation dependencyModuleVersion("groovy", "groovy-json")
testImplementation project(":inject-java-test")
testCompileOnly project(":inject-groovy")
}
//compileTestGroovy.groovyOptions.forkOptions.jvmArgs = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005']
spotless {
java {
targetExclude '**/io/micronaut/validation/validator/constraints/EmailValidator.java'
}
}