From 57cf3e36a36efd7bebc6d0d1a1b59aa2a8ac4a3a Mon Sep 17 00:00:00 2001 From: Jordan Gigov Date: Thu, 16 Aug 2018 10:09:04 +0300 Subject: [PATCH] mavenLocal should always be first repository Using mavenCentral above mavenLocal means any library screenshots you may have installed locally are overridden. Having mavenLocal first ensures you trust the local cache above all else. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index b50f844b..a8671511 100644 --- a/build.gradle +++ b/build.gradle @@ -7,8 +7,8 @@ plugins { allprojects { repositories { - mavenCentral() mavenLocal() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/releases" } maven { url "http://repo.mikeprimm.com" } maven { url "http://repo.maven.apache.org/maven2" } @@ -48,4 +48,4 @@ clean { } task setupCIWorkspace { -} \ No newline at end of file +}