Hi,
i'm using the new gradle intellij-plugin for my project ( https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html ) and i'm getting an error when i'm trying to disable the buildSearchableOptions feature.
as indicated in the doc, i want to disable the buildSearchableOptions from my build using
intellijPlatform {
buildSearchableOptions = false
}
in my gradle.kts file.
it builds fine, but as soon i want to publish the plugin on our nexus, i'm getting this message :
Invalid publication 'mavenJava': artifact file does not exist: 'path_to/build/libs/myproj-searchableOptions.jar
meaning the publish task is not correctly using the above flag.
my guess is the publish task blindly tries to use the java output that somhow contains the searchableoptions output.