kotlin-bip39/settings.gradle.kts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
428 B
Plaintext
Raw Normal View History

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
plugins {
val kotlinVersion = extra["KOTLIN_VERSION"].toString()
id("org.jetbrains.kotlin.multiplatform") version(kotlinVersion) apply(false)
}
}
2022-04-21 05:16:24 -07:00
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
rootProject.name = "kotlin-bip39"
include(":lib")
includeBuild("build-conventions")