Add gradle wrapper

This commit is contained in:
2014-11-23 20:58:29 +00:00
parent fce770edd1
commit de3ad1dc7f
5 changed files with 273 additions and 2 deletions

View File

@@ -2,16 +2,27 @@ apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
group = 'com.dt'
group = 'com.github.boukefalos'
archivesBaseName = 'jlibitunes'
version = '0.3'
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}
repositories {
maven {
url 'https://github.com/Boukefalos/jlibloader/raw/mvn-repo/'
}
maven {
url 'https://github.com/Boukefalos/jlibcom/raw/mvn-repo/'
}
mavenCentral()
}
dependencies {
compile 'net.sf.jacob-project:jacob:1.14.3'
compile 'com.github.boukefalos:jlibcom:1.18'
compile 'com.github.boukefalos:jlibloader:0.1'
}
uploadArchives {