forked from micronaut-projects/micronaut-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (25 loc) · 1.32 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
dependencies {
api project(":inject")
api project(':aop')
api dependencyModuleVersion("groovy", "groovy")
// testImplementation 'javax.validation:validation-api:1.1.0.Final'
testImplementation group: 'javax.inject', name: 'javax.inject', version: '1'
testImplementation dependencyVersion("spotbugs")
testImplementation "org.hibernate:hibernate-core:5.4.29.Final"
testImplementation 'org.hibernate:hibernate-validator:6.1.6.Final'
testRuntimeOnly 'org.glassfish.web:el-impl:2.2.1-b05'
testRuntimeOnly 'org.glassfish:javax.el:3.0.1-b12'
testImplementation project(":http-server-netty")
testImplementation project(":http-client")
testImplementation project(":inject-test-utils")
testImplementation project(":inject-groovy-test")
testImplementation project(":validation")
testImplementation 'org.neo4j.driver:neo4j-java-driver:1.4.5'
testImplementation dependencyModuleVersion("groovy", "groovy-json")
testImplementation "com.blazebit:blaze-persistence-core-impl:1.6.0-Alpha1"
}
test {
exclude '**/*$_closure*'
}
//compileTestGroovy.groovyOptions.forkOptions.jvmArgs = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005']
//compileGroovy.groovyOptions.forkOptions.jvmArgs = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005']