Files
jlibitunes/build.gradle
2014-12-07 10:20:19 +00:00

35 lines
592 B
Groovy

apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
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 'com.github.boukefalos:jlibcom:1.15'
}
uploadArchives {
repositories.mavenDeployer {
repository(url: uri('.maven'))
}
}
jar {
from sourceSets.main.allSource
}