105 lines
2.3 KiB
Groovy
105 lines
2.3 KiB
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "maven-publish"
|
|
}
|
|
|
|
|
|
group = "net.codinux.utils"
|
|
|
|
|
|
kotlin {
|
|
jvm {
|
|
compilations.all {
|
|
kotlinOptions.jvmTarget = '1.8'
|
|
}
|
|
withJava()
|
|
testRuns["test"].executionTask.configure {
|
|
useJUnitPlatform()
|
|
}
|
|
}
|
|
|
|
// js(BOTH) {
|
|
// browser {
|
|
// commonWebpackConfig {
|
|
// cssSupport.enabled = true
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
ios {
|
|
binaries {
|
|
framework {
|
|
baseName = "MultiplatformUtils"
|
|
}
|
|
}
|
|
}
|
|
|
|
def hostOs = System.getProperty("os.name")
|
|
def isMingwX64 = hostOs.startsWith("Windows")
|
|
def nativeTarget
|
|
if (hostOs == "Mac OS X") nativeTarget = macosX64('native')
|
|
else if (hostOs == "Linux") nativeTarget = linuxX64("native")
|
|
else if (isMingwX64) nativeTarget = mingwX64("native")
|
|
else throw new GradleException("Host OS is not supported in Kotlin/Native.")
|
|
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlinx:kotlinx-datetime:0.3.2"
|
|
}
|
|
}
|
|
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin("test-common")
|
|
implementation kotlin("test-annotations-common")
|
|
}
|
|
}
|
|
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
|
|
compileOnly "org.slf4j:slf4j-api:$slf4jVersion"
|
|
|
|
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.9.9"
|
|
}
|
|
}
|
|
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin("test-junit")
|
|
|
|
implementation "org.junit.jupiter:junit-jupiter:$junit5Version"
|
|
runtimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
|
|
|
implementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// jsMain {
|
|
// dependencies {
|
|
// implementation npm("@js-joda/timezone", "2.3.0")
|
|
// implementation "io.ktor:ktor-client-js:$ktorVersion"
|
|
// }
|
|
// }
|
|
/* Plus:
|
|
@JsModule("@js-joda/timezone")
|
|
@JsNonModule
|
|
external object JsJodaTimeZoneModule
|
|
|
|
private val jsJodaTz = JsJodaTimeZoneModule
|
|
*/
|
|
|
|
|
|
iosMain {
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
} |