Browse Source

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

build: Fix/optimize gradle repo configuration
Andy Scherzinger 2 years ago
parent
commit
3271fda4d4
1 changed files with 3 additions and 7 deletions
  1. 3 7
      build.gradle

+ 3 - 7
build.gradle

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