mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 22:44:11 +02:00
31 lines
734 B
Plaintext
31 lines
734 B
Plaintext
rootProject.name = "connector"
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
flatDir {
|
|
dirs("lib")
|
|
}
|
|
}
|
|
}
|
|
|
|
include(":composeApp")
|
|
include(":server")
|
|
include(":shared")
|
|
//include(":lib:xpc:buildSrc")
|
|
//include(":lib:xpc")
|
|
//project(":lib:xpc:buildSrc").projectDir = file("lib/xpc/buildSrc")
|
|
//project(":xpc:xpc").projectDir = file("lib/xpc/xpc")
|