21 lines
490 B
Kotlin
21 lines
490 B
Kotlin
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|||
|
|
|
||
|
|
kotlin {
|
||
|
|
explicitApi()
|
||
|
|
withSourcesJar()
|
||
|
|
|
||
|
|
linuxX64()
|
||
|
|
linuxArm64()
|
||
|
|
macosArm64()
|
||
|
|
mingwX64()
|
||
|
|
jvm { compilerOptions.jvmTarget = JvmTarget.JVM_1_8 }
|
||
|
|
|
||
|
|
sourceSets {
|
||
|
|
commonMain.dependencies {
|
||
|
|
api(project(":common"))
|
||
|
|
implementation(libs.cryptography.core)
|
||
|
|
implementation(libs.cryptography.provider.optimal)
|
||
|
|
implementation(libs.ktor.client.core)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|