Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. [error] (*:update) sbt.ResolveException: unresolved dependency: com.mongodb.casbah#casbah_2.9.2;2.1.5-1: not found
  2. [error] unresolved dependency: org.scalatra#scalatra_2.9.2;2.3.0: not found
  3. [error] unresolved dependency: org.scalatra#scalatra-akka2_2.9.2;2.3.0: not found
  4. [error] unresolved dependency: org.scalatra#scalatra-specs2_2.9.2;2.3.0: not found
  5.  
  6. scalaVersion := "2.9.2"
  7.  
  8. mainClass := Some("JettyLauncher")
  9.  
  10. seq(webSettings :_*)
  11.  
  12. port in container.Configuration := 8080
  13.  
  14. seq(assemblySettings: _*)
  15.  
  16. libraryDependencies ++= Seq(
  17. "com.mongodb.casbah" %% "casbah" % "2.8.1-1",
  18. "org.scalatra" %% "scalatra" % "2.2.0",
  19. "org.scalatra" %% "scalatra-akka2" % "2.2.0",
  20. "org.scalatra" %% "scalatra-specs2" % "2.2.0" % "test",
  21. "org.mortbay.jetty" % "servlet-api" % "3.0.20100224" % "provided",
  22. "org.eclipse.jetty" % "jetty-server" % "8.0.0.M3" % "container, compile",
  23. "org.eclipse.jetty" % "jetty-util" % "8.0.0.M3" % "container, compile",
  24. "org.eclipse.jetty" % "jetty-webapp" % "8.0.0.M3" % "container, compile"
  25. )
  26.  
  27. resolvers ++= Seq(
  28. "Sonatype OSS" at "http://oss.sonatype.org/content/repositories/releases/",
  29. "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/",
  30. "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
  31. "Akka Repo" at "http://akka.io/repository/",
  32. "Web plugin repo" at "http://siasia.github.com/maven2"
  33. )
  34.  
  35. addSbtPlugin("com.earldouglas" %% "xsbt-web-plugin" % "0.9.0")
  36.  
  37. addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.7.2")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement