fe30193d7c
Closes #71
89 lines
1.8 KiB
Plaintext
89 lines
1.8 KiB
Plaintext
description = "A Result monad for modelling success or failure operations."
|
|
|
|
plugins {
|
|
`maven-publish`
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
jvm {
|
|
compilations.all {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
all {
|
|
languageSettings.apply {
|
|
optIn("kotlin.contracts.ExperimentalContracts")
|
|
}
|
|
}
|
|
|
|
val commonMain by getting {
|
|
|
|
}
|
|
|
|
val commonTest by getting {
|
|
dependencies {
|
|
implementation(kotlin("test-common"))
|
|
implementation(kotlin("test-annotations-common"))
|
|
}
|
|
}
|
|
|
|
val jvmTest by getting {
|
|
dependencies {
|
|
implementation(kotlin("test-junit"))
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
|
|
val jsTest by getting {
|
|
dependencies {
|
|
implementation(kotlin("test-js"))
|
|
}
|
|
}
|
|
|
|
val nativeMain by creating {
|
|
dependsOn(commonMain)
|
|
}
|
|
|
|
val linuxX64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
val mingwX64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
val macosX64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
val macosArm64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
val iosX64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
val iosArm64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
|
|
val iosSimulatorArm64Main by getting {
|
|
dependsOn(nativeMain)
|
|
}
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications.withType<MavenPublication> {
|
|
pom {
|
|
description.set(project.description)
|
|
}
|
|
}
|
|
}
|