Skip to content

Commit 5535ed8

Browse files
committed
Use different repositories to avoid certificate issues
1 parent 57218bf commit 5535ed8

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed
Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
rootProject.name = 'wurstscript'
1+
pluginManagement {
2+
repositories {
3+
maven { url = uri("https://cache-redirector.jetbrains.com/plugins.gradle.org/m2") }
4+
gradlePluginPortal()
5+
maven { url = uri("https://plugins.gradle.org/m2") }
6+
maven { url = uri("https://cache-redirector.jetbrains.com/maven-central") }
7+
mavenCentral()
8+
}
9+
}
10+
11+
dependencyResolutionManagement {
12+
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
13+
repositories {
14+
maven { url = uri("https://cache-redirector.jetbrains.com/maven-central") }
15+
mavenCentral()
16+
google()
17+
maven { url 'https://jitpack.io' }
18+
}
19+
}
20+
21+
rootProject.name = 'wurstscript'
22+

0 commit comments

Comments
 (0)