Skip to content

Instantly share code, notes, and snippets.

@pk11
Created June 7, 2011 02:18
Show Gist options
  • Save pk11/1011562 to your computer and use it in GitHub Desktop.
Save pk11/1011562 to your computer and use it in GitHub Desktop.
sbt example
name := "myproject"
organization := "com.booo"
version := "1.0"
scalaVersion := "2.8.1"
scalacOptions += "-deprecation"
seq(WebPlugin.webSettings :_*)
seq(Idea.settings :_*)
resolvers ++= Seq("Coda Hales Repository" at "http://repo.codahale.com"
,"guice maven repository" at "http://guice-maven.googlecode.com/svn/trunk"
,"scalatools" at "http://nexus.scala-tools.org/content/repositories/public"
,"scalatools-release" at "http://scala-tools.org/repo-releases"
,"s3" at "http://jets3t.s3.amazonaws.com/maven2")
libraryDependencies ++= Seq("com.mortennobel" % "java-image-scaling" % "0.8.5",
"net.sf.oval" % "oval" % "1.32" % "compile",
"log4j" % "log4j" % "1.2.14" % "compile",
"com.codahale" %% "jerkson" % "0.1.7",
"com.h2database" % "h2" % "1.0.20070617" % "test->default"
,"com.codahale" %% "simplespec" % "0.3.3" % "test->default"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment