Hey room. Trying to add kotlin to an existing maven project. I altered the pom according to Kotlin docs for adding to a java project, and It builds fine from the command line. But in Eclipse, even with the Kotlin Eclipse Plugin - the java classes can’t find the Kotlin classes. Anything I should look into?
Michael
08/22/2017, 3:40 PM
Actually just had success - this was not obvious. I moved to the Kotlin Perspective, removed the kotlin nature from my sources, went into properties and added
/kotlin
to the source paths by hand (it wasn’t using mavens?), then readded the kotlin nature. Now it builds. 😰