This commit is contained in:
Emux
2021-03-27 19:37:53 +02:00
committed by GitHub
parent e1c24ee8cf
commit ef5f7acbdf
6 changed files with 17 additions and 9 deletions

View File

@@ -1,7 +1,12 @@
buildscript {
repositories {
google()
jcenter()
jcenter {
content {
// https://youtrack.jetbrains.com/issue/IDEA-261387
includeModule("org.jetbrains.trove4j", "trove4j")
}
}
mavenCentral()
}
dependencies {
@@ -43,9 +48,15 @@ def versionName() { return version }
subprojects {
repositories {
google()
jcenter()
jcenter {
content {
// https://youtrack.jetbrains.com/issue/IDEA-261387
includeModule("org.jetbrains.trove4j", "trove4j")
}
}
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://plugins.gradle.org/m2/" }
}
tasks.withType(JavaCompile) {