You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2019/10/15 12:47:24 UTC

[geode-examples] branch release/1.9.2 updated: Ordering of repositories appears to be significant

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

jensdeppe pushed a commit to branch release/1.9.2
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/release/1.9.2 by this push:
     new e68b827  Ordering of repositories appears to be significant
e68b827 is described below

commit e68b827f16271f7a3df0759692b06127dbb20b37
Author: Jens Deppe <jd...@pivotal.io>
AuthorDate: Tue Oct 15 05:45:51 2019 -0700

    Ordering of repositories appears to be significant
    
    - Specifically, when the conditional repository definition comes ijnto
      play, gradle does not seem to recognize the other defined repositories.
    
    Authored-by: Jens Deppe <jd...@pivotal.io>
---
 build.gradle | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/build.gradle b/build.gradle
index e82f2cd..53d6f0f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -23,15 +23,15 @@ plugins {
 
 allprojects {
     repositories {
+        mavenCentral()
+        maven {
+            url 'https://storage.googleapis.com/maven.apachegeode-ci.info/snapshots'
+        }
         if (geodeRepositoryUrl != "") {
             maven {
                 url geodeRepositoryUrl
             }
         }
-        mavenCentral()
-        maven {
-            url 'https://storage.googleapis.com/maven.apachegeode-ci.info/snapshots'
-        }
     }
 }