-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
41 lines (32 loc) · 1.06 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
plugins {
id("java")
id("io.github.goooler.shadow") version "8.1.7"
}
group = "dev.jsinco.brewery"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
mavenLocal()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://jitpack.io")
maven("https://repo.oraxen.com/releases")
}
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
compileOnly("org.projectlombok:lombok:1.18.30")
//
compileOnly("io.th0rgal:oraxen:1.163.0")
implementation("com.github.Carleslc.Simple-YAML:Simple-Yaml:1.8.4")
implementation("dev.thorinwasher.schem:schem-reader:dev")
compileOnly("org.jetbrains:annotations:24.0.0")
annotationProcessor("org.projectlombok:lombok:1.18.30")
testAnnotationProcessor("org.projectlombok:lombok:1.18.30")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.8.0")
}
java {
toolchain.languageVersion = JavaLanguageVersion.of(21)
}
tasks.test {
useJUnitPlatform()
}