Skip to content

Instantly share code, notes, and snippets.

@hexx
Created June 21, 2012 05:59
Show Gist options
  • Save hexx/2964110 to your computer and use it in GitHub Desktop.
Save hexx/2964110 to your computer and use it in GitHub Desktop.
play-jsx build.sbt
sbtPlugin := true
name := "play-jsx"
organization := "com.github.hexx"
version := "0.0.1"
scalacOptions := Seq("-deprecation", "-unchecked")
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies <++= (scalaVersion, sbtVersion) { (scalaV, sbtV) => Seq(
"play" % "sbt-plugin" % "2.0.1" extra("scalaVersion" -> scalaV, "sbtVersion" -> sbtV)
)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment