Created
March 5, 2011 21:14
-
-
Save micrypt/856728 to your computer and use it in GitHub Desktop.
Loading Metabroadcast's Maven repository into sbt
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 LiftProject(info: ProjectInfo) extends DefaultWebProject(info) { | |
val liftVersion = "2.2" | |
// uncomment the following if you want to use the snapshot repo | |
// val scalatoolsSnapshot = ScalaToolsSnapshots | |
// Adding Metabroadcast's Maven repository | |
val mavenMetabroadcast = "Metabroadcast Maven Repository" at "http://mvn.metabroadcast.com/all" | |
// If you're using JRebel for Lift development, uncomment | |
// this line | |
// override def scanDirectories = Nil | |
override def libraryDependencies = Set( | |
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default", | |
"net.liftweb" %% "lift-mapper" % liftVersion % "compile->default", | |
"org.mortbay.jetty" % "jetty" % "6.1.22" % "test->default", | |
"junit" % "junit" % "4.5" % "test->default", | |
"ch.qos.logback" % "logback-classic" % "0.9.26", | |
"org.scala-tools.testing" %% "specs" % "1.6.6" % "test->default", | |
"com.h2database" % "h2" % "1.2.138", | |
"com.metabroadcast.common.social" % "common-social" % "1.0-SNAPSHOT" intransitive() | |
) ++ super.libraryDependencies | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment