32 lines
761 B
Groovy
32 lines
761 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'ch.raffael.pegdown-doclet:pegdown-doclet:1.2'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'groovy'
|
|
apply plugin: 'ch.raffael.pegdown-doclet'
|
|
apply plugin: 'war'
|
|
|
|
dependencies {
|
|
compile localGroovy()
|
|
compile 'ch.qos.logback:logback-classic:1.1.3'
|
|
compile 'ch.qos.logback:logback-core:1.1.3'
|
|
compile 'org.slf4j:slf4j-api:1.7.14'
|
|
compile 'com.zaxxer:HikariCP:2.4.3'
|
|
compile 'net.jthink:jaudiotagger:2.2.3'
|
|
compile 'commons-codec:commons-codec:1.10'
|
|
compile 'javax.persistence:persistence-api:1.0.2'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
runtime 'com.h2database:h2:1.4.185'
|
|
runtime 'org.postgresql:postgresql:9.4.1207.jre7'
|
|
}
|