Skip to content

Instantly share code, notes, and snippets.

@wongk
Created November 19, 2019 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wongk/872520af74dc3eb1249f33969e7dc9e0 to your computer and use it in GitHub Desktop.
Save wongk/872520af74dc3eb1249f33969e7dc9e0 to your computer and use it in GitHub Desktop.
Blog - Umbrella Project - settings.gradle.kts
pluginManagement {
val kotlinVersion = "1.3.50"
resolutionStrategy {
eachPlugin {
if (requested.id.namespace?.startsWith("org.jetbrains.kotlin") == true) {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
}
}
rootProject.name = "iOSAppUmbrella"
enableFeaturePreview("GRADLE_METADATA")
include(":MyProjectA")
project(":MyProjectA").projectDir = File("modules/MyProjectA")
include(":MyProjectB")
project(":MyProjectB").projectDir = File("modules/MyProjectB")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment