gradle: Limit jitpack to libsu; drop unused google's maven repo

Ref: https://docs.gradle.org/current/userguide/declaring_repositories_adv.html#sec:repository-content-filtering

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2024-09-11 19:47:32 +05:30
parent ecfd53b758
commit fb3cc09ce2

View File

@@ -30,8 +30,12 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://jitpack.io/")
maven("https://maven.google.com/")
// libsu is only available via jitpack
maven("https://jitpack.io/") {
content {
includeModule("com.github.topjohnwu.libsu", "core")
}
}
}
}
include(":app")