Intellij plugin will not run in WebStorm

I have a plugin that runs in Intellij but is getting a NoClassDefFound JavaCommandLineState exception in webstorm.

com/intellij/execution/configurations/JavaCommandLineState
java.lang.NoClassDefFoundError: com/intellij/execution/configurations/JavaCommandLineState
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
at java.lang.ClassLoader.defineClass(ClassLoader.java:642)
at com.intellij.util.lang.UrlClassLoader._defineClass(UrlClassLoader.java:278)
...

0
1 comment

`JavaCommandLineState` class is used to run Java Application run configurations from IntelliJ IDEA, it's part of Java support and it isn't included into WebStorm. Why do you need to use it from your plugin?

0

Please sign in to leave a comment.