I'm going to publish a Play project for github, but I would like Scala developers not to have to install the game separately if they already have sbt installed.
Is it possible to compile and run the Play project with sbt if we add the correct dependencies?
My work build.sbt for Play is here, but it does not work with sbt.
import play.Project._
name := "my_project_name"
version := "1.0"
libraryDependencies ++= Seq(
"com.netflix.rxjava" % "rxjava-scala" % "0.17.4",
"oauth.signpost" % "signpost-core" % "1.2.1.2",
"oauth.signpost" % "signpost-commonshttp4" % "1.2.1.2",
"org.apache.httpcomponents" % "httpclient" % "4.3.3",
"commons-io" % "commons-io" % "2.3"
)
playScalaSettings
Thank!
source
share