Files
jlibpipe/build.gradle
2016-08-08 20:23:22 +01:00

31 lines
809 B
Groovy

apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
task wrapper(type: Wrapper) {
gradleVersion = '2.14'
}
dependencies {
compile 'com.github.boukefalos:jlibpipe:0.1'
compile 'com.github.boukefalos:jlibloader:0.2'
compile 'commons-io:commons-io:2.+'
compile 'commons-cli:commons-cli:1.+'
compile 'commons-pool:commons-pool:1.+'
compile 'org.slf4j:slf4j-api:1.+'
compile 'org.slf4j:slf4j-log4j12:1.7.5'
compile 'org.ostermiller:utils:1.+'
compile 'com.googlecode.soundlibs:jlayer:1.+'
compile 'net.sf.javamusictag:jid3lib:0.+'
repositories {
maven {
url 'https://github.com/Boukefalos/mimis/raw/mvn-repo/'
}
maven {
url 'https://github.com/Boukefalos/jlibloader/raw/mvn-repo/'
}
mavenCentral()
}
}