Last active
August 29, 2015 14:13
-
-
Save mikesname/e78e08d0618b27dbd29a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := """test-rjs""" | |
version := "1.0-SNAPSHOT" | |
lazy val root = (project in file(".")).enablePlugins(PlayScala, SbtWeb) | |
scalaVersion := "2.11.1" | |
libraryDependencies ++= Seq( | |
jdbc, | |
anorm, | |
cache, | |
ws | |
) | |
pipelineStages := Seq(rjs, uglify, digest, gzip) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/" | |
// The Play plugin | |
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.7") | |
// web plugins | |
addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.0") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.1") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.7") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.0.0") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-mocha" % "1.0.0") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-uglify" % "1.0.3") | |
addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.0") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment