kotlin-bip39/settings.gradle.kts

22 lines
474 B
Plaintext

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
plugins {
val kotlinVersion = extra["KOTLIN_VERSION"].toString()
id("org.jetbrains.kotlin.multiplatform") version(kotlinVersion) apply(false)
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
google()
mavenCentral()
}
}
rootProject.name = "kotlin-bip39"
include(":bip39-lib")
includeBuild("build-conventions-bip39")