Update build.gradle to build artifact com.github.boukefalos:jlibredis:2.6.2 with gradle wrapper 2.2
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -12,3 +12,4 @@ tags
|
|||||||
.idea
|
.idea
|
||||||
*.aof
|
*.aof
|
||||||
*.rdb
|
*.rdb
|
||||||
|
.maven
|
||||||
|
|||||||
27
build.gradle
27
build.gradle
@@ -2,9 +2,9 @@ apply plugin: 'java'
|
|||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
|
|
||||||
group = 'com.googlecode.jedis'
|
group = 'com.github.boukefalos'
|
||||||
archivesBaseName = 'jedis'
|
archivesBaseName = 'jlibredis'
|
||||||
version = '1.5.0'
|
version = '2.6.2'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@@ -15,19 +15,12 @@ dependencies {
|
|||||||
compile 'org.apache.commons:commons-pool2:2.0'
|
compile 'org.apache.commons:commons-pool2:2.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task wrapper(type: Wrapper) {
|
||||||
|
gradleVersion = '2.2'
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
TODO: Customize for deployment
|
|
||||||
uploadArchives {
|
uploadArchives {
|
||||||
repositories.mavenDeployer {
|
repositories.mavenDeployer {
|
||||||
repository(url: "file://localhost/repo/") {
|
repository(url: uri('.maven'))
|
||||||
authentication(userName: "user", password: "pass")
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
task createWrapper(type: Wrapper) {
|
|
||||||
gradleVersion = '1.8'
|
|
||||||
}
|
|
||||||
|
|
||||||
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
#Mon Nov 04 18:13:13 EST 2013
|
#Sun Nov 30 11:33:11 GMT 2014
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
|
distributionUrl=http\://services.gradle.org/distributions/gradle-2.2-bin.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user