There is something broken with Kotlin JVM version ...
# intellij-plugins
b
There is something broken with Kotlin JVM version
1.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:
Copy code
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?