-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
50 lines (39 loc) · 1.23 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
plugins {
id("java")
id("com.gradleup.shadow") version "8.3.5"
}
group = "net.thenextlvl.arkitektonika"
version = "2.1.2"
java {
toolchain.languageVersion = JavaLanguageVersion.of(21)
}
tasks.compileJava {
options.release.set(21)
}
repositories {
mavenCentral()
maven("https://repo.thenextlvl.net/releases")
}
dependencies {
compileOnly("org.jetbrains:annotations:26.0.1")
compileOnly("org.projectlombok:lombok:1.18.34")
implementation("org.xerial:sqlite-jdbc:3.47.0.0")
implementation("io.javalin:javalin:6.3.0")
implementation("com.google.code.gson:gson:2.11.0")
implementation("ch.qos.logback:logback-classic:1.5.12")
implementation("net.thenextlvl.core:version-checker:1.2.3")
implementation("net.thenextlvl.core:annotations:2.0.1")
implementation("net.thenextlvl.core:files:2.0.0")
implementation("net.thenextlvl.core:utils:1.0.10")
implementation("net.thenextlvl.core:nbt:2.2.14")
annotationProcessor("org.projectlombok:lombok:1.18.34")
}
tasks.shadowJar {
archiveFileName.set("arkitektonika.jar")
}
tasks.jar {
manifest {
attributes["Main-Class"] = "net.thenextlvl.arkitektonika.Arkitektonika"
attributes["Implementation-Version"] = version
}
}