chore: buildscript jank fix
This commit is contained in:
parent
735b6c669d
commit
e80fdbe1a9
1 changed files with 5 additions and 11 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue