Created
March 8, 2012 15:37
-
-
Save bryanjswift/2001540 to your computer and use it in GitHub Desktop.
Project files for debugging
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
| organization := "com.momentumww" | |
| name := "sxsw-12" | |
| version := "0.0.5" | |
| scalaVersion := "2.9.1" | |
| resolvers ++= Seq( | |
| "Bryan's Repo" at "http://repos.bryanjswift.com/maven2/" | |
| ) | |
| libraryDependencies ++= Seq( | |
| "commons-cli" % "commons-cli" % "1.2", | |
| "com.lambdaworks" % "lettuce" % "2.0.0", | |
| "com.rabbitmq" % "amqp-client" % "2.7.1", | |
| "com.yammer.dropwizard" % "dropwizard-core" % "0.2.0", | |
| "com.yammer.dropwizard" %% "dropwizard-scala" % "0.2.0", | |
| "org.twitter4j" % "twitter4j-stream" % "2.2.5", | |
| "com.mongodb.casbah" %% "casbah-query" % "2.1.5-1", | |
| "com.mongodb.casbah" %% "casbah-core" % "2.1.5-1", | |
| "com.mongodb.casbah" %% "casbah-commons" % "2.1.5-1", | |
| "joda-time" % "joda-time" % "2.0", | |
| "org.joda" % "joda-convert" % "1.1", | |
| "bryanjswift" %% "simple-velocity" % "0.3.5", | |
| // Testing | |
| "junit" % "junit" % "4.10" % "test", | |
| "org.scalatest" %% "scalatest" % "1.7.1" % "test" | |
| ) | |
| scalacOptions += "-deprecation" | |
| seq(jsSettings : _*) | |
| seq(lessSettings : _*) | |
| (compile in Compile) <<= compile in Compile dependsOn (JsKeys.js in Compile) | |
| (compile in Compile) <<= compile in Compile dependsOn (LessKeys.less in Compile) |
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
| resolvers += Resolver.url( | |
| "sbt-plugin-releases", | |
| url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/") | |
| )(Resolver.ivyStylePatterns) | |
| addSbtPlugin("com.untyped" % "sbt-js" % "0.3") | |
| addSbtPlugin("com.untyped" %% "sbt-less" % "0.3") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment