Correctly disable useless IntelliJ plugin tasks.

This commit is contained in:
Jeremy Wood 2023-02-19 18:53:43 -05:00
parent 2fdef44744
commit bd6fb4e51c
No known key found for this signature in database
GPG Key ID: C5BAD04C77B91B4B
2 changed files with 9 additions and 7 deletions

View File

@ -166,10 +166,3 @@ intellij {
instrumentCode = true
downloadSources = false
}
// disable everything from intellij plugin except instrumentation
patchPluginXml.enabled = false
prepareSandbox.enabled = false
buildSearchableOptions.enabled = false
jarSearchableOptions.enabled = false
buildPlugin.enabled = false

View File

@ -3,3 +3,12 @@
*/
rootProject.name = 'Multiverse-Core'
// Disable the tasks we don't from the IntelliJ plugin
startParameter.excludedTaskNames = [
'patchPluginXml',
'prepareSandbox',
'buildSearchableOptions',
'jarSearchableOptions',
'buildPlugin',
]