使用scala 2.8的maven和lift:lift-mapper丢失?
Posted
技术标签:
【中文标题】使用scala 2.8的maven和lift:lift-mapper丢失?【英文标题】:maven and lift using scala 2.8 : lift-mapper missing? 【发布时间】:2011-01-30 23:04:38 【问题描述】:新手问题,因为我没有跟上使用速度 完全是行家。
我正在尝试使用 scala + lift 使用 scala 2.8,环境 如果重要的话,是一个win7盒子。
我使用以下方法创建了一个基本项目:
mvn archetype:generate -U -DarchetypeGroupId=net.liftweb -DarchetypeArtifactId=lift-archetype-basic -DarchetypeVersion=2.0-scala280-SNAPSHOT -DarchetypeRepository=http://scala-tools.org/repo-snapshots -DremoteRepositories=http://scala-tools.org/repo-snapshots -DgroupId=com.liftworkshop
-DartifactId=todo -Dversion=1.0-SNAPSHOT
到目前为止一切顺利,但后来我尝试 cd 进入我的新项目 并做:
mvn jetty:run
我下载了很多次后,出现如下错误:
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) net.liftweb:lift-mapper:jar:2.0-scala280-SNAPSHOT
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=net.liftweb -DartifactId=lift-mapper -D
version=2.0-scala280-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=net.liftweb -DartifactId=lift-mapper -Dve
rsion=2.0-scala280-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -Dr
epositoryId=[id]
Path to dependency:
1) com.liftworkshop:todo:war:1.0-SNAPSHOT
2) net.liftweb:lift-mapper:jar:2.0-scala280-SNAPSHOT
----------
1 required artifact is missing.
for artifact:
com.liftworkshop:todo:war:1.0-SNAPSHOT
from the specified remote repositories:
scala-tools.snapshots (http://scala-tools.org/repo-snapshots),
scala-tools.releases (http://scala-tools.org/repo-releases),
central (http://repo1.maven.org/maven2)
有什么想法吗?
【问题讨论】:
【参考方案1】:我使用您提供的mvn archetype:generate
命令创建了相同的项目,但我无法重现您的问题。 lift-mapper-2.0-scala280-SNAPSHOT.jar
工件肯定在 scala 中 snapshots repository 并且 Maven 下载了它:
如您所见,由于 CHECKSUM 检查失败,Maven 不得不重试下载,但它成功了。
再试一次。
【讨论】:
非常感谢。这一定是暂时的,因为当我在 1 小时后使用完全相同的设置尝试时,它起作用了。以上是关于使用scala 2.8的maven和lift:lift-mapper丢失?的主要内容,如果未能解决你的问题,请参考以下文章
您能否为使用 Scala 的 Lift 框架制作的 webapp 推荐一个好的共享托管服务提供商? [关闭]
Scala 的 (2.8) Manifest 是如何工作的?