Skip to content

Instantly share code, notes, and snippets.

@fedesilva
Created October 6, 2010 05:55
Show Gist options
  • Save fedesilva/612893 to your computer and use it in GitHub Desktop.
Save fedesilva/612893 to your computer and use it in GitHub Desktop.
import sbt._
class SplendidoWebProject(info:ProjectInfo)
extends AppengineProject(info)
with JRebel
with net.stbbs.yasushi.ScalatePlugin {
val scalaj_collection = "org.scalaj" %% "scalaj-collection" % "1.0"
val servletApi = "javax.servlet" % "servlet-api" % "2.5" % "provided->default"
val scalate = "org.fusesource.scalate" % "scalate-core" % "1.2"
val slf4j = "org.slf4j" % "slf4j-jdk14" % "1.6.1"
val scalatest = "org.scalatest" % "scalatest" % "1.2.1-SNAPSHOT" % "test->default"
override def testOptions = super.testOptions ++
Seq(TestArgument(TestFrameworks.ScalaTest, "-oD"))
val javaNetRepo = "Java.net Repository for Maven 2" at "http://download.java.net/maven/2/"
val scalaToolsReleases = "Scala-Tools Maven2 Releases Repository" at "http://scala-tools.org/repo-releases"
val scalaSnapshots = "Scala Snapshots" at "http://scala-tools.org/repo-snapshots/"
val fusesource = "FuseSource Public Repository" at "http://repo.fusesource.com/nexus/content/repositories/public"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment