Skip to content

Instantly share code, notes, and snippets.

@efleming969
Created June 4, 2010 14:09
Show Gist options
  • Select an option

  • Save efleming969/425451 to your computer and use it in GitHub Desktop.

Select an option

Save efleming969/425451 to your computer and use it in GitHub Desktop.
import sbt._
class Project(info: ProjectInfo) extends DefaultProject(info) {
override def repositories = Set(ScalaToolsSnapshots,
"fuzsource.com" at "http://repo.fusesource.com/nexus/content/repositories/snapshots/",
"clapper.org" at "http://maven.clapper.org")
override def libraryDependencies = Set(
"org.scala-tools.testing" %% "specs" % "1.6.5-SNAPSHOT" % "test",
"org.clapper" %% "grizzled-scala" % "0.7" % "compile",
"org.fusesource.scalate" % "scalate-core" % "1.2-scala-next-SNAPSHOT" % "compile",
"ch.qos.logback" % "logback-classic" % "0.9.21" % "compile",
"org.slf4j" % "slf4j-api" % "1.6.0" % "compile",
"org.eclipse.jetty" % "jetty-webapp" % "7.0.2.RC0" % "compile")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment