Publishing v0.1
This commit is contained in:
parent
53db2f0d71
commit
c14a0bec03
@ -1,9 +1,23 @@
|
|||||||
plugins {
|
import ru.landgrafhomyak.kotlin.kmp_gradle_build_helper.defineXomrkGiteaMavenRepo
|
||||||
kotlin("multiplatform") version "2.2.10"
|
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven("https://maven.landgrafhomyak.ru/")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
classpath("ru.landgrafhomyak.kotlin:kotlin-mpp-gradle-build-helper:v0.3k2.1.10")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "ru.landgrafhomyak.utilities"
|
plugins {
|
||||||
version = "1.0-SNAPSHOT"
|
kotlin("multiplatform") version "2.2.10"
|
||||||
|
`maven-publish`
|
||||||
|
}
|
||||||
|
|
||||||
|
group = "ru.landgrafhomyak.utility"
|
||||||
|
version = "0.1"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -25,6 +39,7 @@ kotlin {
|
|||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:${this@kotlin.coreLibrariesVersion}")
|
||||||
implementation("ru.landgrafhomyak.utility:highlevel-try-finally:0.6")
|
implementation("ru.landgrafhomyak.utility:highlevel-try-finally:0.6")
|
||||||
implementation("ru.landgrafhomyak.utility:closeable-state-1:1.2")
|
implementation("ru.landgrafhomyak.utility:closeable-state-1:1.2")
|
||||||
}
|
}
|
||||||
@ -56,4 +71,10 @@ kotlin {
|
|||||||
macosArm64Main { dependsOn(macosMain) }
|
macosArm64Main { dependsOn(macosMain) }
|
||||||
macosArm64Test { dependsOn(macosTest) }
|
macosArm64Test { dependsOn(macosTest) }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
repositories {
|
||||||
|
defineXomrkGiteaMavenRepo("LanguageUtilities")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@ -1 +1,3 @@
|
|||||||
kotlin.mpp.applyDefaultHierarchyTemplate=false
|
kotlin.mpp.applyDefaultHierarchyTemplate=false
|
||||||
|
kotlin.native.enableKlibsCrossCompilation=true
|
||||||
|
kotlin.stdlib.default.dependency=false
|
||||||
@ -1 +1 @@
|
|||||||
Subproject commit e57851782134ca0613646efdf7b44d2e5a23de08
|
Subproject commit 129cee26caa14c18ab9a11a0a9a846b06211fd40
|
||||||
@ -1,4 +1,4 @@
|
|||||||
rootProject.name = "kotlin-native-interop-stdlib-0"
|
rootProject.name = "kotlin-native-interop-utilities-0"
|
||||||
|
|
||||||
includeBuild("lib/closeable-state")
|
includeBuild("lib/closeable-state")
|
||||||
includeBuild("lib/highlevel-try-finally")
|
includeBuild("lib/highlevel-try-finally")
|
||||||
Loading…
Reference in New Issue
Block a user