Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Created November 15, 2022 11:18
Show Gist options
  • Save landarskiy/0fae786273d56476cf696a49228df424 to your computer and use it in GitHub Desktop.
Save landarskiy/0fae786273d56476cf696a49228df424 to your computer and use it in GitHub Desktop.
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Composite Build Example"
include(":app")
include(":core")
include(":core:ui")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment