From e1dab30d388459bbaffee8c425166e221f967389 Mon Sep 17 00:00:00 2001 From: Rik Veenboer Date: Mon, 8 Aug 2016 20:23:22 +0100 Subject: [PATCH] Update build.gradle --- .gitignore | 2 ++ build.gradle | 21 +++++++++++++++++++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a4bf388..7448e1b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /bin /.settings /sound +.classpath +.project \ No newline at end of file diff --git a/build.gradle b/build.gradle index 9ff5a28..dcd5a73 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,14 @@ -dependencies { - compile project(':core.worker') +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.+' @@ -11,4 +18,14 @@ dependencies { 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() + } } \ No newline at end of file