-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
67 lines (51 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
id("java")
id("application")
}
group = "me.wyndev"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://repo.hypera.dev/snapshots")
maven("https://reposilite.worldseed.online/public")
maven("https://jitpack.io")
}
dependencies {
//Logger
implementation("org.slf4j:slf4j-api:2.0.13")
implementation("ch.qos.logback:logback-classic:1.5.6")
//Lombok
compileOnly("org.projectlombok:lombok:1.18.34")
annotationProcessor("org.projectlombok:lombok:1.18.34")
testCompileOnly("org.projectlombok:lombok:1.18.34")
testAnnotationProcessor("org.projectlombok:lombok:1.18.34")
//LuckPerms
implementation("me.lucko.luckperms:minestom:5.4-SNAPSHOT")
//Test
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
//Apache common
implementation("org.apache.commons:commons-lang3:3.15.0")
implementation("commons-io:commons-io:2.16.1")
//Data serialisation (JSON / YAML)
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.2")
//Minecraft
implementation("net.minestom:minestom-snapshots:99ca16e263") //Minestom
implementation("dev.hollowcube:schem:1.2.0") //Schematic loader
implementation("net.kyori:adventure-text-minimessage:4.17.0") //Minecraft component generation: see https://docs.advntr.dev/minimessage/index.html
implementation("net.worldseed.multipart:WorldSeedEntityEngine:10.7.0")
implementation("net.worldseed.particleemitter:ParticleEmitter:1.4.0")
implementation("ca.atlasengine:atlas-projectiles:1.0.1")
}
application {
mainClass.set("me.wyndev.towerdefense.Main")
}
tasks.withType<ShadowJar> {
archiveFileName.set("server.jar")
}
tasks.test {
useJUnitPlatform()
}