breandan
08/22/2017, 9:41 PM1.1.4
for IntelliJ Platform plugin development. After updating from 1.1.3
to 1.1.4
, I receive the following error when activating the plugin via the default shortcut:
class with name 'com.johnlindquist.acejump.control.AceAction' not found [Plugin: AceJump]
com.intellij.diagnostic.PluginException: class with name 'com.johnlindquist.acejump.control.AceAction' not found [Plugin: AceJump]
...
Caused by: java.lang.ClassNotFoundException: com.johnlindquist.acejump.control.AceAction PluginClassLoader[AceJump, 3.4.1] com.intellij.ide.plugins.cl.PluginClassLoader@59de706d
This does not happen on 1.1.3
. The error refers to a class which is present here: https://github.com/johnlindquist/AceJump/blob/master/src/main/kotlin/com/johnlindquist/acejump/control/AceAction.kt
My build.gradle.kts
file can be found here: https://github.com/johnlindquist/AceJump/blob/master/build.gradle.kts#L9
Has anyone else encountered the same issue?