Simple-Gallery/settings.gradle.kts

29 lines
946 B
Plaintext
Raw Normal View History

2023-08-17 14:46:52 +02:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven(url = "https://artifactory.img.ly/artifactory/imgly")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
jcenter()
mavenCentral()
maven { setUrl("https://jitpack.io") }
maven(url = "https://artifactory.img.ly/artifactory/imgly")
}
}
2023-09-06 14:45:48 +02:00
// TODO: This will be deprecated in future. Migrate to the newer `pluginManagement { includeBuild() }` mechanism instead of explicitly substituting dependency.
//includeBuild("../Simple-Commons") {
// dependencySubstitution {
// substitute(module("com.github.SimpleMobileTools:Simple-Commons")).using(project(":commons"))
// }
//}
2023-09-06 14:45:48 +02:00
rootProject.name = "Simple-Gallery"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2023-08-17 14:46:52 +02:00
include(":app")