Run intellij plugin from cli in Windows 10
I'm developing a plugin that analyzes source code in a project. Now I need to run it on a great number of projects, so I decided to automate the process. Looking for a way to achieve this I found that I need to imlement ApplicationStarter interface and declaring it as extention point in appStart category, as descibed here https://stackoverflow.com/questions/48817421/intellij-how-to-make-a-plugin-that-can-perform-ide-actions-via-a-cli-or-web-se Although. I was not able to execute my custom command. When i run idea64 mycommand a loading screen of intellij starts and then nothinng happens. I have to kill the process via task manager. My version Is 2020 on Windows 10 Is there something i'm missing? Thank you in advance.
Please sign in to leave a comment.
Does https://www.jetbrains.com/help/idea/command-line-code-inspector.html suit your requirements?
Hi Manuel,
Did you manage to solve this? I'm struggling with the same issue.