mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-11-02 09:09:55 +01:00
20 lines
388 B
Plaintext
20 lines
388 B
Plaintext
plugins {
|
|
id("net.kyori.blossom")
|
|
}
|
|
|
|
blossom {
|
|
replaceToken("\$VERSION", project.version)
|
|
replaceToken("\$IMPL_VERSION", "git-ViaBackwards-${project.version}:${rootProject.latestCommitHash()}")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnlyApi(libs.viaver)
|
|
compileOnlyApi(libs.netty)
|
|
compileOnlyApi(libs.guava)
|
|
compileOnlyApi(libs.checkerQual)
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
}
|