aboutsummaryrefslogtreecommitdiffhomepage
path: root/Paper-MojangAPI
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2021-06-13 18:06:38 -0700
committerGitHub <[email protected]>2021-06-13 18:06:38 -0700
commit2a46c72164697a80f7b257dcc26b980c48b505ff (patch)
tree06ee1b5c5b2a54b7fb2948c02b8f289501eb2bb8 /Paper-MojangAPI
parent9085da6e602fda8de3b03fece8e4d31278274b8c (diff)
downloadPaper-2a46c72164697a80f7b257dcc26b980c48b505ff.tar.gz
Paper-2a46c72164697a80f7b257dcc26b980c48b505ff.zip
EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820)
Diffstat (limited to 'Paper-MojangAPI')
-rw-r--r--Paper-MojangAPI/build.gradle.kts26
1 files changed, 26 insertions, 0 deletions
diff --git a/Paper-MojangAPI/build.gradle.kts b/Paper-MojangAPI/build.gradle.kts
new file mode 100644
index 0000000000..e0ef6532b9
--- /dev/null
+++ b/Paper-MojangAPI/build.gradle.kts
@@ -0,0 +1,26 @@
+plugins {
+ `java-library`
+ checkstyle
+}
+
+java {
+ withSourcesJar()
+ withJavadocJar()
+}
+
+repositories {
+ mavenCentral()
+ maven("https://libraries.minecraft.net")
+}
+
+dependencies {
+ implementation(project(":Paper-API"))
+ api("com.mojang:brigadier:1.0.18")
+
+ compileOnly("it.unimi.dsi:fastutil")
+ compileOnly("org.jetbrains:annotations:18.0.0")
+
+ testImplementation("junit:junit:4.13.1")
+ testImplementation("org.hamcrest:hamcrest-library:1.3")
+ testImplementation("org.ow2.asm:asm-tree:7.3.1")
+} \ No newline at end of file