28 lines
477 B
Groovy
28 lines
477 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
|
|
group = 'com.googlecode.jedis'
|
|
archiveBaseName = 'jedis'
|
|
version = '1.3.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")
|
|
}
|
|
}
|
|
}
|
|
*/
|