Raccoon/settings.gradle.kts

23 lines
510 B
Plaintext
Raw Normal View History

2023-07-18 22:55:46 +02:00
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
2023-07-19 14:24:07 +02:00
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://plugins.gradle.org/m2/")
2023-07-18 22:55:46 +02:00
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2023-07-18 22:55:46 +02:00
rootProject.name = "Raccoon_for_Lemmy"
include(":androidApp")
include(":shared")