27 lines
594 B
Plaintext
27 lines
594 B
Plaintext
rootProject.name = "bricks-mp-sageclient-sample"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
includeBuild("../..") {
|
|
dependencySubstitution {
|
|
substitute(module("com.bricks.mp:shared")).using(project(":shared"))
|
|
}
|
|
}
|