7
estoy siguiendo los pasos para sbt 0.10
en la Assembla Lift wiki y sale el siguiente error:ascensor no se construye con sbt?
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.github.mpeltonen#sbt-idea_2.8.1;0.10.0-SNAPSHOT: not found
[warn] :: com.github.siasia#xsbt-web-plugin_2.8.1;0.10.1: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[info]
probablemente porque ambas páginas:
http://siasia.github.com/maven2
y
http://mpeltonen.github.com/maven/
no existen?
Mi build.sbt
:
name := "MyWeb"
scalaVersion := "2.9.0"
seq(WebPlugin.webSettings: _*)
resolvers += "Web plugin repo" at "http://siasia.github.com/maven2"
resolvers += "Web plugin repo2" at "http://mpeltonen.github.com/maven/"
libraryDependencies ++= {
val liftVersion = "2.4-M1"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile->default",
"net.liftweb" %% "lift-wizard" % liftVersion % "compile->default"
)
}
libraryDependencies ++= Seq(
"junit" % "junit" % "4.5" % "test->default",
"org.mortbay.jetty" % "jetty" % "6.1.22" % "jetty",
"javax.servlet" % "servlet-api" % "2.5" % "provided->default",
"com.h2database" % "h2" % "1.2.138",
"ch.qos.logback" % "logback-classic" % "0.9.26" % "compile->default"
)
y plugins/build.sbt:
resolvers += "Web plugin repo" at "http://siasia.github.com/maven2"
libraryDependencies <+= sbtVersion("com.github.siasia" %% "xsbt-web-plugin" % _)
¿Qué estoy haciendo mal?
era exactamente lo que ayudó – axaluss
Esto realmente ayudó Sacarme. Me encontré con problemas tratando de compilar las pruebas existentes. Tuve que cambiar la línea del muelle a '" org.mortbay.jetty "%" embarcadero "%" 6.1.22 "%" embarcadero, probar "' y agregar '" org.scala-tools.testing "%" specs_2.9.0 "%" 1.6.8 "%" test "' a las dependencias también – Dylan
¿por qué es "seq" en minúsculas? – jpswain