Use api for the time being since that worked locally

This commit is contained in:
RednedEpic 2022-02-27 17:26:50 -06:00
parent 83c2b72008
commit 12b3bcd6b8
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ subprojects {
when (this) {
in platforms -> plugins.apply("geyser.platform-conventions")
api -> plugins.apply("geyser.shadow-conventions")
else -> plugins.apply("geyser.shadow-conventions")
else -> plugins.apply("geyser.base-conventions")
}
}
}

View File

@ -70,11 +70,11 @@ dependencies {
testImplementation("junit", "junit", Versions.junitVersion)
// Annotation Processors
api(projects.ap)
annotationProcessor(projects.ap)
}
provided(projects.ap)
configure<BlossomExtension> {
val mainFile = "src/main/java/org/geysermc/geyser/GeyserImpl.java"
val gitVersion = "git-${branchName()}-${commitHashAbbrev()}"