2010-03-23 5 views
7

Newbie question depuis que je ne suis pas à la vitesse en utilisant maven du tout. J'essaie d'utiliser scala + lift en utilisant scala 2.8, l'environnement est une boîte win7 si cela est important.maven et soulever avec scala 2.8: manquant de levage manquant?

créer un projet de base en utilisant:

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 

Jusqu'à présent, si bon, mais alors, j'essaie de cd dans mon nouveau projet et faire:

mvn jetty:run 

I après un certain nombre les téléchargements finissent avec une erreur comme ci-dessous:

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

Des idées?

Répondre

2

J'ai créé le même projet en utilisant la commande mvn archetype:generate que vous avez fournie mais je n'ai pas pu reproduire votre problème. L'artefact lift-mapper-2.0-scala280-SNAPSHOT.jar est sans aucun doute dans le scala snapshots repository et Maven téléchargé:

 
... 
1619K downloaded (lift-mapper-2.0-scala280-SNAPSHOT.jar) 
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '0c857e2c5de9d5cabb7c972e519528606f19697b'; remote = 'a258cf7d7a49a8d7163d499da06a4d1e231a78e0' - RETRYING 
Downloading: http://scala-tools.org/repo-snapshots/net/liftweb/lift-mapper/2.0-scala280-SNAPSHOT/lift-mapper-2.0-scala280-SNAPSHOT.jar 
1619K downloaded (lift-mapper-2.0-scala280-SNAPSHOT.jar) 

Comme vous pouvez le voir, Maven a dû recommencer le téléchargement à cause d'un chèque, mais a échoué CHECKSUM cela a fonctionné.

Veuillez réessayer.

+0

Merci beaucoup. Ca devait être une chose temporaire, parce que quand j'ai essayé 1h plus tard avec exactement la même configuration, ça a marché. –

+0

Cela a échoué pour moi, c'est bizarre ... –