Version that was successfully published
Some checks failed
Some checks failed
This commit is contained in:
parent
09622f8226
commit
aeda210bc5
@ -37,7 +37,7 @@ object Versions {
|
||||
|
||||
object ReleaseInfo {
|
||||
val group = "net.sergeych"
|
||||
val bindingsVersion = "0.9.4-SNAPSHOT"
|
||||
val bindingsVersion = "0.9.6-SNAPSHOT"
|
||||
}
|
||||
|
||||
object Deps {
|
||||
|
@ -128,14 +128,14 @@ kotlin {
|
||||
}
|
||||
}
|
||||
|
||||
if (ideaActive.not()) {
|
||||
// if (ideaActive.not()) {
|
||||
linuxArm64() {
|
||||
binaries {
|
||||
staticLib {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
@ -328,11 +328,11 @@ kotlin {
|
||||
"linuxX64"
|
||||
)
|
||||
val linuxArm64Bit = setOf(
|
||||
if (ideaActive.not()) {
|
||||
// if (ideaActive.not()) {
|
||||
"linuxArm64"
|
||||
} else {
|
||||
""
|
||||
}
|
||||
// } else {
|
||||
// ""
|
||||
// }
|
||||
)
|
||||
|
||||
//iosArm64, iosX64, macosX64, metadata, tvosArm64, tvosX64, watchosArm32, watchosArm64
|
||||
@ -771,6 +771,34 @@ signing {
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications.withType(MavenPublication::class) {
|
||||
artifact(tasks["javadocJar"])
|
||||
pom {
|
||||
name.set("Kotlin Multiplatform Crypto")
|
||||
description.set("Kotlin Multiplatform Libsodium Wrapper")
|
||||
url.set("https://github.com/ionspin/kotlin-multiplatform-crypto")
|
||||
licenses {
|
||||
license {
|
||||
name.set("The Apache License, Version 2.0")
|
||||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
id.set("ionspin")
|
||||
name.set("Ugljesa Jovanovic")
|
||||
email.set("opensource@ionspin.com")
|
||||
}
|
||||
}
|
||||
scm {
|
||||
url.set("https://github.com/ionspin/kotlin-multiplatform-libsodium")
|
||||
connection.set("scm:git:git://git@github.com:ionspin/kotlin-multiplatform-libsodium.git")
|
||||
developerConnection.set("scm:git:ssh://git@github.com:ionspin/kotlin-multiplatform-libsodium.git")
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
val mavenToken by lazy {
|
||||
("token " + File("${System.getProperty("user.home")}/.gitea_token").readText())
|
||||
}
|
||||
|
@ -1,11 +0,0 @@
|
||||
//package com.ionspin.kotlin.crypto.debug
|
||||
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
class TestTest {
|
||||
@Test
|
||||
fun wasmSymbolsTest() {
|
||||
assertEquals(42, 42)
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
package com.ionspin.kotlin.crypto.debug
|
||||
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
class WasmSymbolsTest {
|
||||
@Test
|
||||
fun wasmSymbolsTest() {
|
||||
assertEquals(42, 42)
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user