-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
executable file
·121 lines (111 loc) · 2.6 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import com.vanniktech.maven.publish.SonatypeHost
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
plugins {
id("org.jetbrains.kotlin.multiplatform") version "1.9.25"
id("com.android.library") version "8.1.0"
id("com.vanniktech.maven.publish") version "0.29.0"
}
group = "org.angproj.big"
version = "0.9"
kotlin {
explicitApi()
jvmToolchain(19)
jvm()
js {
browser()
nodejs()
}
// WASM and similar
@OptIn(ExperimentalWasmDsl::class)
wasmJs {
browser()
nodejs()
}
@OptIn(ExperimentalWasmDsl::class)
wasmWasi { nodejs() }
// Android
androidTarget {
/*compilations.all {
compileTaskProvider.configure {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_1_8)
}
}
}*/
publishLibraryVariants("release")
}
androidNativeArm32()
androidNativeArm64()
androidNativeX64()
androidNativeX86()
// Linux
linuxArm64()
linuxX64()
// macOS
macosArm64()
macosX64()
// MingW
mingwX64()
// iOS
iosArm64()
iosX64()
iosSimulatorArm64()
// tvOS
tvosArm64()
tvosX64()
tvosSimulatorArm64()
// watchOS
watchosArm32()
watchosArm64()
watchosDeviceArm64()
watchosSimulatorArm64()
sourceSets {
commonMain.dependencies {
implementation("org.angproj.aux:angelos-project-aux:0.9.8")
}
jvmTest.dependencies {
implementation(kotlin("test"))
}
}
}
android {
namespace = group.toString()
compileSdk = 34
defaultConfig {
minSdk = 30
}
/*compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}*/
}
mavenPublishing {
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
//signAllPublications()
coordinates(group.toString(), version.toString())
pom {
name.set("My library")
description.set("A library.")
inceptionYear.set("2024")
url.set("https://github.com/kotlin/multiplatform-library-template/")
licenses {
license {
name.set("XXX")
url.set("YYY")
distribution.set("ZZZ")
}
}
developers {
developer {
id.set("XXX")
name.set("YYY")
url.set("ZZZ")
}
}
scm {
url.set("XXX")
connection.set("YYY")
developerConnection.set("ZZZ")
}
}
}