You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by pr...@apache.org on 2019/02/26 23:28:58 UTC

[geode] branch develop updated: GEODE-6449: Roll back docker-java rather than using custom jar. (#3241)

This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 1802f72  GEODE-6449: Roll back docker-java rather than using custom jar. (#3241)
1802f72 is described below

commit 1802f725ed978459a9520b6d1f126606ca03679a
Author: Patrick Rhomberg <pr...@pivotal.io>
AuthorDate: Tue Feb 26 15:28:47 2019 -0800

    GEODE-6449: Roll back docker-java rather than using custom jar. (#3241)
    
    Use 3.0.14 rather than custom 3.1.2-GEODE from AWS S3.
---
 build.gradle          | 3 +--
 buildSrc/build.gradle | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/build.gradle b/build.gradle
index 7b30b71..0d4567f 100755
--- a/build.gradle
+++ b/build.gradle
@@ -20,7 +20,6 @@ buildscript {
     maven { url "https://plugins.gradle.org/m2/" }
     maven { url "https://dl.bintray.com/palantir/releases" }
     jcenter()
-    maven { url "http://geode-maven.s3-website-us-west-2.amazonaws.com" }
   }
 
   dependencies {
@@ -58,7 +57,7 @@ allprojects {
   repositories {
     mavenLocal()
     mavenCentral()
-    maven { url "http://repo.spring.io/release" }
+    maven { url "https://repo.spring.io/release" }
   }
 
   buildRoot = buildRoot.trim()
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index 45cdec5..5ed0c48 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -18,7 +18,6 @@
 
 repositories {
   mavenCentral()
-  maven { url "http://geode-maven.s3-website-us-west-2.amazonaws.com" }
 }
 
 dependencies {
@@ -28,7 +27,7 @@ dependencies {
   compile gradleApi()
   compile 'org.apache.commons:commons-lang3:3.3.2'
   compile 'org.apache.maven:maven-artifact:3.3.3'
-  compile 'com.github.docker-java:docker-java:3.1.2-GEODE'
+  compile 'com.github.docker-java:docker-java:3.0.14'
 
   compile 'junit:junit:4.12'