Files
jlibredis/build.gradle
Jonathan Leibiusky e73564b3ba version bump
2010-12-10 17:42:13 -03:00

28 lines
477 B
Groovy

apply plugin: 'java'
apply plugin: 'maven'
group = 'com.googlecode.jedis'
archiveBaseName = 'jedis'
version = '1.5.0'
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.8.1'
compile 'commons-pool:commons-pool:1.5.5'
}
/*
TODO: Customize for deployment
uploadArchives {
repositories.mavenDeployer {
repository(url: "file://localhost/repo/") {
authentication(userName: "user", password: "pass")
}
}
}
*/