mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-26 08:51:47 +01:00
Use api for the time being since that worked locally
This commit is contained in:
parent
83c2b72008
commit
12b3bcd6b8
2 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ subprojects {
|
||||||
when (this) {
|
when (this) {
|
||||||
in platforms -> plugins.apply("geyser.platform-conventions")
|
in platforms -> plugins.apply("geyser.platform-conventions")
|
||||||
api -> plugins.apply("geyser.shadow-conventions")
|
api -> plugins.apply("geyser.shadow-conventions")
|
||||||
else -> plugins.apply("geyser.shadow-conventions")
|
else -> plugins.apply("geyser.base-conventions")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -70,11 +70,11 @@ dependencies {
|
||||||
testImplementation("junit", "junit", Versions.junitVersion)
|
testImplementation("junit", "junit", Versions.junitVersion)
|
||||||
|
|
||||||
// Annotation Processors
|
// Annotation Processors
|
||||||
|
api(projects.ap)
|
||||||
|
|
||||||
annotationProcessor(projects.ap)
|
annotationProcessor(projects.ap)
|
||||||
}
|
}
|
||||||
|
|
||||||
provided(projects.ap)
|
|
||||||
|
|
||||||
configure<BlossomExtension> {
|
configure<BlossomExtension> {
|
||||||
val mainFile = "src/main/java/org/geysermc/geyser/GeyserImpl.java"
|
val mainFile = "src/main/java/org/geysermc/geyser/GeyserImpl.java"
|
||||||
val gitVersion = "git-${branchName()}-${commitHashAbbrev()}"
|
val gitVersion = "git-${branchName()}-${commitHashAbbrev()}"
|
||||||
|
|
Loading…
Reference in a new issue