-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
48 lines (42 loc) · 1.22 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
allprojects {
group = "com.sphereon.kmp"
version = "0.2.0-SNAPSHOT.25"
}
plugins {
kotlin("multiplatform") version libs.versions.kotlin apply false
kotlin("plugin.serialization") version libs.versions.kotlin apply false
id("io.kotest.multiplatform") version libs.versions.kotest apply false
// id("com.google.devtools.ksp") version "2.0.0-RC3-1.0.20"
// kotlin("jvm") apply false
id("module.publication") apply false
kotlin("jvm") version libs.versions.kotlin
}
/*
ksp {
arg("erasePackage", "true")
}*/
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven {
url = uri("https://raw.githubusercontent.com/a-sit-plus/gradle-conventions-plugin/mvn/repo")
name = "aspConventions"
}
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
name = "bigNum"
}
maven(url = "https://raw.githubusercontent.com/Deezer/KustomExport/mvn-repo")
}
/*
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.freeCompilerArgs += "-opt-in=kotlin.js.ExperimentalJsExport"
}
*/
kotlin {
jvmToolchain(17)
compilerOptions {
freeCompilerArgs.add("-Xexpect-actual-classes")
}
}