Skip to content

Instantly share code, notes, and snippets.

@micrypt
Created March 5, 2011 21:14
Show Gist options
  • Save micrypt/856728 to your computer and use it in GitHub Desktop.
Save micrypt/856728 to your computer and use it in GitHub Desktop.
Loading Metabroadcast's Maven repository into sbt
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