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 // the repositories for external depenencies
repositories { repositories {
maven { url 'http://repo.lucares.de/' } maven {
mavenCentral() url 'https://repo.lucares.de/'
jcenter() 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. // In this example we use TestNG as our testing tool. JUnit is the default.