wdiwtlt/service/build.gradle

19 lines
490 B
Groovy
Raw Normal View History

2016-02-09 04:25:07 +00:00
apply plugin: 'java'
2015-12-03 20:28:29 +00:00
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'
2016-02-09 04:25:07 +00:00
compile 'com.zaxxer:HikariCP:2.4.3'
compile 'net.jthink:jaudiotagger:2.2.3'
compile 'commons-codec:commons-codec:1.10'
2015-12-03 20:28:29 +00:00
testCompile 'junit:junit:4.12'
runtime 'com.h2database:h2:1.4.185'
2016-02-09 04:25:07 +00:00
runtime 'org.postgresql:postgresql:9.4.1207.jre7'
2015-12-03 20:28:29 +00:00
}