You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
669 B
29 lines
669 B
2 years ago
|
pluginManagement {
|
||
|
repositories {
|
||
|
google()
|
||
|
gradlePluginPortal()
|
||
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
maven("https://us-central1-maven.pkg.dev/varabyte-repos/public")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencyResolutionManagement {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
maven("https://us-central1-maven.pkg.dev/varabyte-repos/public")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
rootProject.name = "BallastSharedUI"
|
||
|
include(
|
||
|
":androidApp",
|
||
|
":web",
|
||
|
":shared",
|
||
|
":feature:router",
|
||
|
":feature:home",
|
||
|
":feature:counter",
|
||
|
)
|