fetch org.lucares artifacts only from repo.lucares.de

This commit is contained in:
2019-02-02 17:51:20 +01:00
parent c0fffbf676
commit 1d8ca0e21c

View File

@@ -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.