26 lines
430 B
Groovy
26 lines
430 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'eclipse'
|
|
|
|
group = 'com.github.boukefalos'
|
|
archivesBaseName = 'jlibredis'
|
|
version = '2.6.2'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.11'
|
|
compile 'org.apache.commons:commons-pool2:2.0'
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.2'
|
|
}
|
|
|
|
uploadArchives {
|
|
repositories.mavenDeployer {
|
|
repository(url: uri('.maven'))
|
|
}
|
|
} |