2021-06-14 03:06:38 +02:00
|
|
|
plugins {
|
|
|
|
`java-library`
|
2021-06-15 03:50:13 +02:00
|
|
|
`maven-publish`
|
2021-06-14 03:06:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://libraries.minecraft.net")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-26 07:08:46 +01:00
|
|
|
implementation(project(":paper-api"))
|
2021-06-14 03:06:38 +02:00
|
|
|
api("com.mojang:brigadier:1.0.18")
|
|
|
|
|
2021-12-26 00:12:28 +01:00
|
|
|
compileOnly("it.unimi.dsi:fastutil:8.5.6")
|
|
|
|
compileOnly("org.jetbrains:annotations:23.0.0")
|
2021-06-14 03:06:38 +02:00
|
|
|
|
2021-12-26 00:12:28 +01:00
|
|
|
testImplementation("junit:junit:4.13.2")
|
2021-06-14 03:06:38 +02:00
|
|
|
testImplementation("org.hamcrest:hamcrest-library:1.3")
|
2021-12-26 00:12:28 +01:00
|
|
|
testImplementation("org.ow2.asm:asm-tree:9.2")
|
2021-06-14 08:56:15 +02:00
|
|
|
}
|
2021-06-15 03:50:13 +02:00
|
|
|
|
|
|
|
configure<PublishingExtension> {
|
|
|
|
publications.create<MavenPublication>("maven") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|