Version that was successfully published
Some checks failed
Build project and push to maven snapshot / Build-And-Push-Linux (push) Has been cancelled
Build project and push to maven snapshot / Build-And-Push-Mac (push) Has been cancelled
Build project and push to maven snapshot / Build-And-Push-Windows (push) Has been cancelled

This commit is contained in:
kildishevps 2025-03-03 12:55:13 +03:00
parent 09622f8226
commit aeda210bc5
4 changed files with 35 additions and 29 deletions

View File

@ -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 {

View File

@ -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())
}

View File

@ -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)
}
}

View File

@ -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)
}
}