Merge pull request #2063 from nextcloud/chore/noid/gradle-repo-optimization

build: Fix/optimize gradle repo configuration
This commit is contained in:
Andy Scherzinger 2022-05-18 15:23:32 +02:00 committed by GitHub
commit 3271fda4d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,9 +29,7 @@ buildscript {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
maven { url 'https://plugins.gradle.org/m2/' }
gradlePluginPortal()
mavenCentral()
}
@ -55,11 +53,9 @@ configurations.all {
allprojects {
repositories {
google()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://jitpack.io' }
maven { url 'https://maven.google.com' }
mavenCentral()
maven { url 'https://jitpack.io' }
gradlePluginPortal() // for jcenter mirroring, remove ASAP
}
}