Compile Kotlin project and using in Scala project

It should be possible. Kotlin, like Java and Scala, compiles down to bytecode, and so Scala should be able to use Kotlin classes just like it can use Java classes.

The only wrinkle is that compiled Kotlin tends to make use of classes defined in the Kotlin runtime library, so you’ll need to include that, too — either by copying it into the .jar file you build (a ‘fat jar’), or adding it to the Scala project’s classpath (e.g. using Maven).