mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-02 16:49:37 +01:00
87d54f1103
* Make use of `TYPESAFE_PROJECT_ACCESSORS` and `VERSION_CATALOGS` Gradle feature previews to clean up build scripts * Bump setup-java action to v2, specify AdoptOpenJDK distribution
23 lines
498 B
Plaintext
23 lines
498 B
Plaintext
plugins {
|
|
id("net.kyori.blossom")
|
|
}
|
|
|
|
blossom {
|
|
replaceToken("\$VERSION", project.version)
|
|
replaceToken("\$IMPL_VERSION", "git-ViaVersion-${project.version}:${rootProject.latestCommitHash()}")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.adventure) {
|
|
targetConfiguration = "shadow"
|
|
}
|
|
api(libs.fastutil)
|
|
api(libs.openNBT)
|
|
api(libs.gson)
|
|
|
|
compileOnlyApi(libs.snakeYaml)
|
|
compileOnlyApi(libs.netty)
|
|
compileOnlyApi(libs.guava)
|
|
compileOnlyApi(libs.checkerQual)
|
|
}
|