How to make sure the development sandbox has some plugins installed
已回答
When I start the runIDE target, I have a new instance of IntelliJ with my plugin. However, I need to install other plugins to test (such as the Python community edition). I encounter the following problems
- Each time I restart the runIDE, the plugins I installed in the sandbox are gone
- Each time I refresh my plugin in the sandbox, the plugins I installed fail to load
Are there any solutions to these issues? Is it possible to have a sandbox start with a list of predefined plugins? Is there a fix to also make sure the plugins installed in the sandbox are present when I reload my plugin in development?
Thanks!
请先登录再写评论。
The "easiest" way is to define them as additional plugin dependencies (https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html). Alternatively, you can extend/script your Gradle setup to copy them "manually" into sandbox for runIde task.
Thank you!