FossifyGalleryVisibilityPatch/settings.gradle.kts

29 lines
768 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()
jcenter()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
2023-09-07 09:37:18 +02:00
2023-12-14 14:44:06 +05:30
rootProject.name = "Gallery"
2023-09-06 18:15:48 +05:30
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2023-08-17 14:46:52 +02:00
include(":app")
2023-09-07 09:37:18 +02:00
// TODO: This will be deprecated in future. Migrate to the newer `pluginManagement { includeBuild() }` mechanism instead of explicitly substituting dependency.
2023-12-12 19:46:44 +05:30
/*includeBuild("../Commons") {
2023-09-07 09:37:18 +02:00
dependencySubstitution {
2023-12-14 16:07:47 +05:30
substitute(module("org.fossify:commons")).using(project(":commons"))
2023-09-07 09:37:18 +02:00
}
}*/