-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
41 lines (35 loc) · 922 Bytes
/
build.gradle.kts
File metadata and controls
41 lines (35 loc) · 922 Bytes
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
group = "io.newcircuit"
version = "2.0.0"
plugins {
kotlin("jvm") version "1.5.0"
kotlin("plugin.serialization") version "1.5.0"
application
distribution
}
repositories {
mavenCentral()
}
dependencies {
implementation(files(
"libs/javacord-3.3.1-SNAPSHOT-shaded.jar"
))
implementation("com.charleskorn.kaml:kaml:0.33.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.snakeyaml:snakeyaml-engine:2.3")
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.5.0")
}
application {
mainClass.set("MainKt")
}
distributions {
main {
contents {
from("./config") {
into("config")
}
from("./README.md", "LICENSE")
}
}
}