From 1d8ca0e21c2405eeeb4b475cf92c7ef2d8c88042 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Sat, 2 Feb 2019 17:51:20 +0100 Subject: [PATCH] fetch org.lucares artifacts only from repo.lucares.de --- build.gradle | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 276fd74..2b3a64a 100644 --- a/build.gradle +++ b/build.gradle @@ -52,9 +52,14 @@ subprojects { // the repositories for external depenencies repositories { - maven { url 'http://repo.lucares.de/' } - mavenCentral() - jcenter() + maven { + url 'https://repo.lucares.de/' + content { includeGroup "org.lucares" } + } + mavenCentral(content: { excludeGroup "org.lucares" }) + jcenter{ + content { excludeGroup "org.lucares" } + } } // In this example we use TestNG as our testing tool. JUnit is the default.