Simple-Commons/settings.gradle.kts

19 lines
445 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") }
}
}
2023-09-06 09:13:20 +00:00
rootProject.name = "Simple-Commons"
2023-07-24 13:37:03 +00:00
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":samples", "commons")