chore: buildscript jank fix

This commit is contained in:
FalsePattern 2024-07-04 17:18:02 +02:00
parent 735b6c669d
commit e80fdbe1a9
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23

View file

@ -96,7 +96,7 @@ allprojects {
dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
if (path !in listOf(":", ":debugger")) {
if (path !in listOf(":", ":plugin", ":debugger")) {
intellijPlatform {
intellijIdeaCommunity(ideaVersion)
}
@ -261,6 +261,10 @@ project(":plugin") {
intellijPlatform {
zipSigner()
pluginVerifier()
when (baseIDE) {
"idea" -> intellijIdeaCommunity(ideaVersion)
"clion" -> clion(clionVersion)
}
plugin(lsp4ijPluginString)
}
}
@ -385,16 +389,6 @@ tasks {
}
}
dependencies {
intellijPlatform {
when (baseIDE) {
"idea" -> intellijIdeaCommunity(ideaVersion)
"clion" -> clion(clionVersion)
}
plugin(lsp4ijPluginString)
}
}
fun distFile(it: String) = layout.buildDirectory.file("dist/ZigBrains-${pluginVersion().get()}-$it-signed.zip")
publishVersions.forEach {