-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
40 lines (33 loc) · 1.14 KB
/
build.gradle.kts
File metadata and controls
40 lines (33 loc) · 1.14 KB
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
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "2.0.21"
kotlin("plugin.serialization") version "2.0.20"
id("com.gradleup.shadow") version "8.3.5"
application
}
group = "io.github.iprodigy"
version = "1.1.1"
repositories {
mavenCentral()
}
dependencies {
implementation(group = "ch.qos.logback", name = "logback-classic", version = "1.5.12")
implementation(group = "com.github.twitch4j", name = "twitch4j", version = "1.23.0")
implementation(group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version = "1.7.3")
implementation(platform("io.github.xanthic.cache:cache-bom:0.6.2"))
implementation(group = "io.github.xanthic.cache", name = "cache-provider-caffeine3")
implementation(group = "io.github.xanthic.cache", name = "cache-kotlin")
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<KotlinCompile> {
compilerOptions {
jvmTarget = JvmTarget.JVM_17
}
}
application {
mainClass.set("io.github.iprodigy.MainKt")
}