apatch/settings.gradle.kts
2026-01-04 20:10:16 +01:00

25 lines
483 B
Kotlin

@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}
rootProject.name = "APatch"
include(":app")