3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-20 02:00:07 +02:00
Geyser/api/geyser/build.gradle.kts

16 Zeilen
343 B
Plaintext

2022-04-24 20:35:49 +02:00
plugins {
id("geyser.api-conventions")
}
2022-02-27 23:38:55 +01:00
dependencies {
api(projects.api)
2022-08-24 06:53:13 +02:00
implementation("net.kyori", "adventure-text-serializer-legacy", Versions.adventureVersion)
}
publishing {
publications.named<MavenPublication>("mavenJava") {
groupId = rootProject.group as String + ".geyser"
artifactId = "api"
}
2022-02-27 23:38:55 +01:00
}