Geyser/api/geyser/build.gradle.kts

14 lines
247 B
Text
Raw Normal View History

2022-04-24 18:35:49 +00:00
plugins {
id("geyser.api-conventions")
}
2022-02-27 22:38:55 +00:00
dependencies {
api(projects.api)
}
publishing {
publications.named<MavenPublication>("mavenJava") {
groupId = rootProject.group as String + ".geyser"
artifactId = "api"
}
2022-02-27 22:38:55 +00:00
}