I have an Eclipse RCP application and added a class written in Kotlin (I added the Kotlin Eclipse plugin, the Kotlin libraries etc.) So far everything works great and I can call the Kotlin class from another Java class when I start the application inside of Eclipse (via Launch an Eclipse Application).
Now, I want to export the application using the PDE export wizard (Export > Plugin-Development > Eclipse Product). However, this does not export compiled Kotlin class but exports it like a normal package resource (so mypackage/MyClass.kt instead of mypackage/MyClass.class).
Can I configure the PDE Build / Export so that it exports the compiled Kotlin classes?