I'm a huge fan of the PlayFramework, but I have limited experience with SBT / Scala. I've been trying to use Kotlin more, so I'm trying to get Kotlin Running on SBT / PlayFramework.
I've used Kotlin with the Gradle Build system, but that requires me to apply the Kotlin Gradle plugin. Not sure how to do the equivalent for SBT.
Here is your basic build.sbt for Play. How would I go about getting adding Kotlin?
name := """KotlinTestServer"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs
)
I'd have to add "org.jetbrains.kotlin" % "kotlin-stdlib" % "0.10.195"
as a library dependency, but what else?