-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
37 lines (27 loc) · 986 Bytes
/
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
plugins {
kotlin("jvm") version "1.8.20"
kotlin("plugin.serialization") version "1.8.20"
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "io.github.slaxnetwork"
version = "0.0.1"
repositories {
mavenLocal()
mavenCentral()
maven(url = "https://jitpack.io")
}
dependencies {
implementation("com.github.Minestom.Minestom:Minestom:-SNAPSHOT")
implementation("net.kyori:adventure-api:4.13.0")
implementation("net.kyori:adventure-text-minimessage:4.13.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.0-Beta")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
implementation("com.github.shynixn.mccoroutine:mccoroutine-minestom-api:2.11.0")
implementation("com.github.shynixn.mccoroutine:mccoroutine-minestom-core:2.11.0")
}
tasks.jar {
manifest {
attributes("Main-Class" to "io.github.slaxnetwork.MainKt")
attributes("Multi-Release" to true)
}
}