-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
50 lines (45 loc) · 1.13 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
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
kotlin("jvm") version "2.1.20-Beta1"
id("com.github.ben-manes.versions") version "0.52.0"
}
repositories {
mavenCentral()
// maven { url = uri("https://jitpack.io") }
}
dependencies {
// implementation("com.moriatsushi.cacheable:cacheable-core:0.0.2")
// implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
// implementation("com.github.ajalt.mordant:mordant:2.0.0-beta13")
// implementation("org.jetbrains.kotlinx:multik-api:0.2.1")
// implementation("org.jetbrains.kotlinx:multik-default:0.2.1")
// implementation("io.arrow-kt:arrow-core:1.1.5")
}
tasks {
sourceSets {
main {
java.srcDirs("src")
}
}
processResources {
enabled = false
}
processTestResources {
enabled = false
}
jar {
enabled = false
}
test {
enabled = false
}
compileJava {
options.release = 22
}
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll("-Xexport-kdoc", "-opt-in=kotlin.RequiresOptIn")
jvmTarget.set(JvmTarget.JVM_22)
}
}