-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
120 lines (101 loc) · 1.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
import dev.strixpyrr.shorthand.CompilerArgumentScope.Companion.RequiresOptIn
import dev.strixpyrr.shorthand.JvmDefaultMode.All
import dev.strixpyrr.shorthand.applyPlugins
import dev.strixpyrr.shorthand.freeCompilerArgs
import dev.strixpyrr.shorthand.getting
plugins {
kotlin("multiplatform") version "1.6.10"
kotlin("plugin.serialization") version "1.6.10" apply false
id("com.bnorm.power.kotlin-power-assert") version "0.10.0" apply false
id("dev.strixpyrr.shorthand")
`maven-publish`
}
// Workaround for #18237
var _deps = deps
allprojects()
{
applyPlugins()
{
kotlin("multiplatform")
id("maven-publish")
}
group = "dev.strixpyrr.kuid"
version = "0.1.0"
repositories()
{
mavenCentral()
}
kotlin()
{
jvm()
js(IR)
{
nodejs()
useCommonJs()
binaries.library()
}
}
}
subprojects()
{
kotlin()
{
jvm()
{
compilations.all()
{
kotlinOptions.run()
{
jvmTarget = "1.8"
languageVersion = "1.6"
freeCompilerArgs()
{
jvmDefault = All
}
}
}
}
js(IR)
{
compilations.all()
{
kotlinOptions.run()
{
languageVersion = "1.6"
}
}
}
sourceSets()
{
val commonMain by getting()
{
dependencies()
{
implementation(kotlin("stdlib-common"))
}
}
all()
{
languageSettings()
{
optIn(RequiresOptIn)
}
}
}
}
dependencies()
{
"jvmTestImplementation"(_deps.kotest)
}
tasks()
{
val jvmTest: Test by getting()
{
useJUnitPlatform()
}
}
}
dependencies()
{
commonMainApi(projects.kuidCore)
}