14 lines
292 B
Groovy
14 lines
292 B
Groovy
apply plugin: 'groovy'
|
|
apply plugin: 'war'
|
|
|
|
dependencies {
|
|
compile localGroovy()
|
|
compile 'ch.qos.logback:logback-classic:1.1.2'
|
|
compile 'ch.qos.logback:logback-core:1.1.2'
|
|
compile 'org.slf4j:slf4j-api:1.7.10'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
runtime 'com.h2database:h2:1.4.185'
|
|
}
|