FossifyGallery/settings.gradle.kts

21 lines
459 B
Text
Raw Normal View History

2023-08-17 14:46:52 +02:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
2024-07-03 10:58:35 +02:00
jcenter()
2023-08-17 14:46:52 +02:00
maven { setUrl("https://jitpack.io") }
}
}
2023-09-07 09:37:18 +02:00
2023-12-14 10:14:06 +01:00
rootProject.name = "Gallery"
2023-09-06 14:45:48 +02:00
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2024-09-08 20:56:34 +02:00
include(":app")