Created
July 6, 2012 19:21
-
-
Save hrj/3062255 to your computer and use it in GitHub Desktop.
SBT with Jetty 8.1.x gives an error. For xsbt bug #499
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
name := "sbt-jetty-test" | |
scalaVersion := "2.9.2" | |
libraryDependencies ++= Seq( | |
"org.eclipse.jetty" % "jetty-webapp" % "8.1.4.v20120524" artifacts (Artifact("jetty-webapp", "jar", "jar")) | |
) | |
classpathTypes ~= (_ + "orbit") |
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
[info] Set current project to sbt-jetty-test (in build file:/sbt_test/) | |
> package | |
[info] Updating {file:/sbt_test/}default-380614... | |
[info] Resolving org.scala-lang#scala-library;2.9.2 ... | |
[info] Resolving org.eclipse.jetty#jetty-webapp;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-xml;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-util;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-servlet;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-security;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-server;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty.orbit#javax.servlet;3.0.0.v201112011016 ... | |
[info] Resolving org.eclipse.jetty#jetty-continuation;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-http;8.1.4.v20120524 ... | |
[info] Resolving org.eclipse.jetty#jetty-io;8.1.4.v20120524 ... | |
[warn] [NOT FOUND ] org.eclipse.jetty.orbit#javax.servlet;3.0.0.v201112011016!javax.servlet.orbit (1380ms) | |
[warn] ==== public: tried | |
[warn] http://repo1.maven.org/maven2/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016.orbit | |
[warn] :::::::::::::::::::::::::::::::::::::::::::::: | |
[warn] :: FAILED DOWNLOADS :: | |
[warn] :: ^ see resolution messages for details ^ :: | |
[warn] :::::::::::::::::::::::::::::::::::::::::::::: | |
[warn] :: org.eclipse.jetty.orbit#javax.servlet;3.0.0.v201112011016!javax.servlet.orbit | |
[warn] :::::::::::::::::::::::::::::::::::::::::::::: | |
[error] {file:/sbt_test/}default-380614/*:update: sbt.ResolveException: download failed: org.eclipse.jetty.orbit#javax.servlet;3.0.0.v201112011016!javax.servlet.orbit | |
[error] Total time: 4 s, completed Jul 7, 2012 12:49:03 AM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment