Created
January 16, 2011 22:40
-
-
Save wfaler/782223 to your computer and use it in GitHub Desktop.
Bowler SBT Project File
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 BowlerProject(info: ProjectInfo) extends DefaultWebProject(info){ | |
val bowler = "org.bowlerframework" %% "core" % "0.5.1" | |
val slf4jVersion = "1.6.0" | |
val sfl4jnop = "org.slf4j" % "slf4j-nop" % slf4jVersion % "runtime" | |
// allows you to use an embedded/in-JVM jetty-server to run unit-tests. | |
val scalatraTest = "org.scalatra" %% "scalatra-scalatest" % "2.0.0.M4" % "test" | |
val jetty6 = "org.eclipse.jetty" % "jetty-server" % "7.2.0.v20101020" % "test" | |
val jettyWebapp = "org.eclipse.jetty" % "jetty-webapp" % "7.2.0.v20101020" % "test" | |
val servletApi = "javax.servlet" % "servlet-api" % "2.5" % "provided" | |
val sonatypeNexusSnapshots = | |
"Sonatype Nexus Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" | |
val sonatypeNexusReleases = | |
"Sonatype Nexus Releases" at "https://oss.sonatype.org/content/repositories/releases" | |
val scalaToolsRepo = "Scala-Tools repo" at "http://scala-tools.org/repo-releases/" | |
val fuseSourceSnapshots = "FuseSource Snapshot Repository" at "http://repo.fusesource.com/nexus/content/repositories/snapshots" | |
val scalaToolsnapshots = "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment