Skip to content

Commit f723c0f

Browse files
committed
Fix build failure
1 parent 17e06c9 commit f723c0f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
buildscript {
22
repositories {
3+
gradlePluginPortal()
34
google()
4-
mavenCentral()
55
mavenLocal()
6+
mavenCentral()
7+
jcenter()
68
maven { url "https://jitpack.io" }
79
}
810
dependencies {
@@ -12,10 +14,11 @@ buildscript {
1214

1315
allprojects {
1416
repositories {
15-
maven { url 'https://maven.ghostscript.com/' }
16-
mavenLocal()
17+
gradlePluginPortal()
1718
google()
19+
mavenLocal()
1820
mavenCentral()
21+
jcenter()
1922
maven { url "https://jitpack.io" }
2023
}
2124
}

lib/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ afterEvaluate {
5858
}
5959
}
6060
repositories {
61+
gradlePluginPortal()
62+
google()
6163
mavenLocal()
64+
mavenCentral()
65+
jcenter()
6266
maven { url "https://jitpack.io" }
6367
}
6468
}

0 commit comments

Comments
 (0)