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 {
|
dependencies {
|
||||||
compileOnly("org.projectlombok:lombok:1.18.32")
|
compileOnly("org.projectlombok:lombok:1.18.32")
|
||||||
annotationProcessor("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 {
|
intellijPlatform {
|
||||||
intellijIdeaCommunity(ideaVersion)
|
intellijIdeaCommunity(ideaVersion)
|
||||||
}
|
}
|
||||||
|
@ -261,6 +261,10 @@ project(":plugin") {
|
||||||
intellijPlatform {
|
intellijPlatform {
|
||||||
zipSigner()
|
zipSigner()
|
||||||
pluginVerifier()
|
pluginVerifier()
|
||||||
|
when (baseIDE) {
|
||||||
|
"idea" -> intellijIdeaCommunity(ideaVersion)
|
||||||
|
"clion" -> clion(clionVersion)
|
||||||
|
}
|
||||||
plugin(lsp4ijPluginString)
|
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")
|
fun distFile(it: String) = layout.buildDirectory.file("dist/ZigBrains-${pluginVersion().get()}-$it-signed.zip")
|
||||||
|
|
||||||
publishVersions.forEach {
|
publishVersions.forEach {
|
||||||
|
|
Loading…
Add table
Reference in a new issue