FossifyGallery/settings.gradle.kts

20 lines
424 B
Text
Raw Permalink Normal View History

2023-08-17 14:46:52 +02:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
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-22 21:41:53 +02:00
include(":app")