-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (29 loc) · 948 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (29 loc) · 948 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id("buildlogic.java-conventions")
}
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
dependencies {
api(libs.io.papermc.paper.paper.api)
api(libs.org.openjdk.jmh.jmh.core)
api(libs.org.openjdk.jmh.jmh.generator.annprocess)
api(libs.org.roaringbitmap.roaringbitmap)
api(libs.it.unimi.dsi.fastutil)
api(libs.net.kyori.adventure.api)
api(libs.net.kyori.adventure.platform.bukkit)
api(libs.org.ejml.simple.library)
testImplementation(libs.org.junit.jupiter.junit.jupiter.api)
testImplementation(libs.junit.junit)
testImplementation(libs.org.hamcrest.hamcrest.library)
compileOnly(libs.org.jetbrains.annotations)
}
tasks {
compileJava {
options.compilerArgs.addAll(listOf(
"--add-exports", "java.base/jdk.internal.vm.annotation=ALL-UNNAMED"
))
}
}
description = "Movecraft-API"