kotlin-bip39/settings.gradle.kts

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

22 lines
474 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 {
2022-04-26 05:08:28 -07:00
@Suppress("UnstableApiUsage")
2022-04-21 05:16:24 -07:00
repositories {
google()
mavenCentral()
}
}
rootProject.name = "kotlin-bip39"
include(":bip39-lib")
includeBuild("build-conventions-bip39")