Simple-Commons/settings.gradle.kts

18 lines
409 B
Text
Raw Normal View History

2023-07-24 13:37:03 +00:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
2023-07-24 13:38:56 +00:00
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
2023-07-24 13:37:03 +00:00
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":samples", "commons")