Created
June 4, 2010 14:09
-
-
Save efleming969/425451 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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