Gradle build for Jedis
This commit is contained in:
committed by
Jonathan Leibiusky
parent
d0f011aa1b
commit
94b7e1d511
26
build.gradle
Normal file
26
build.gradle
Normal file
@@ -0,0 +1,26 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'maven'
|
||||
|
||||
group = 'redis.clients'
|
||||
archiveBaseName = 'jedis'
|
||||
version = '1.0.0-RC3'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile 'junit:junit:4.8.1'
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
TODO: Customize for deployment
|
||||
uploadArchives {
|
||||
repositories.mavenDeployer {
|
||||
repository(url: "file://localhost/repo/") {
|
||||
authentication(userName: "user", password: "pass")
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user