GenshinProxy/settings.gradle.kts
2022-05-15 10:51:52 +08:00

23 lines
478 B
Plaintext

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id("icu.nullptr.stringfuck") version "0.2.2"
}
}
rootProject.name = "GenshinProxy"
include(":app")