-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
61 lines (47 loc) · 2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
dependencies {
compile 'org.javassist:javassist:3.16.1-GA'
// includes fix for GRAILS-11126
//compile 'org.grails:grails-plugin-rest:2.3.5-hyve4'
compile 'com.google.protobuf:protobuf-java:3.1.0'
compile 'com.google.protobuf:protobuf-java-util:3.1.0' // provides protobuf-to-json serialization
runtime 'org.postgresql:postgresql:9.3-1100-jdbc41'
runtime 'com.oracle:ojdbc6:11.2.0.3.0'
testCompile 'org.gmock:gmock:0.8.3'
testCompile 'junit:junit:4.11'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile 'org.codehaus.groovy.modules.http-builder:http-builder:0.6'
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
provided "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:scaffolding"
console "org.grails:grails-console"
compile 'net.sf.opencsv:opencsv:2.3'
compile "org.hibernate:hibernate-ehcache"
compile "com.google.guava:guava:$guavaVersion"
profile "org.grails.profiles:web-plugin"
provided "org.grails:grails-plugin-services"
provided "org.grails:grails-plugin-domain-class"
testCompile "org.grails:grails-plugin-testing"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
testCompile 'org.grails:grails-datastore-rest-client'
compile 'org.quartz-scheduler:quartz:2.2.1'
compile 'net.sf.opencsv:opencsv:2.3'
compile 'org.grails.plugins:spring-security-core:3.1.1'
compile project(':transmart-core-api')
compile project(':transmart-core-db-tests')
}
assets {
packagePlugin = true
}
test.testLogging.exceptionFormat = 'full'
bootRun {
jvmArgs = ['-Xmx4096m']
}
// Uncomment to show standard out/error output
//test.testLogging.showStandardStreams = true