maven and lift using scala 2.8 : lift-mapper missing?

Posted by Bjorn J on Stack Overflow See other posts from Stack Overflow or by Bjorn J
Published on 2010-03-23T18:59:23Z Indexed on 2010/03/23 19:03 UTC
Read the original article Hit count: 620

Filed under:
|
|
|
|

Newbie question since I'm not up to speed using maven at all.

I'm trying to use scala + lift using scala 2.8, environment is a win7 box if that matters.

I create a basic project using:

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

So far so good, but then, I try to cd into my new project and do:

mvn jetty:run

I after quite a few downloads end up with a error like below:

[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)

Any ideas?

© Stack Overflow or respective owner

Related posts about maven

Related posts about lift