2011-10-24 13 views
1

playn-cuteのmaven-installを実行しようとすると、このエラーをどのように克服できますか(私はplayn-projectで同じことをします)? playn maven-install error

 
    [INFO] ------------------------------------------------------------------------ 
    [INFO] Building PlayN Cute Flash 1.0-SNAPSHOT 
    [INFO] ------------------------------------------------------------------------ 
    [INFO] 
    [INFO] --- maven-dependency-plugin:2.1:unpack (unpack) @ playn-cute-flash --- 
    [INFO] Configured Artifact: com.adobe.flex:flex-sdk:4.1.0.16076_mpl:zip 
    SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". 
    SLF4J: Defaulting to no-operation (NOP) logger implementation 
    SLF4J: See htttp://www.slf4j.org/codes.html#StaticLoggerBinder for further details. 
    Downloading: htttp://forplay.googlecode.com/svn/mavenrepo/com/adobe/flex/flex- sdk/4.1.0.16076_mpl/flex-sdk-4.1.0.16076_mpl.zip 
    [INFO] ------------------------------------------------------------------------ 
    [INFO] Reactor Summary: 
    [INFO] 
    [INFO] PlayN Cute Metaproject ............................ SUCCESS [0.625s] 
    [INFO] PlayN Cute Core ................................... SUCCESS [5.781s] 
    [INFO] PlayN Cute HTML ................................... SUCCESS [54.125s] 
    [INFO] PlayN Cute Flash .................................. FAILURE [23:58.047s] 
    [INFO] PlayN Cute Android ................................ SKIPPED 
    [INFO] ------------------------------------------------------------------------ 
    [INFO] BUILD FAILURE 
    [INFO] ------------------------------------------------------------------------ 
    [INFO] Total time: 25:01.422s 
    [INFO] Finished at: Mon Oct 24 17:20:07 BST 2011 
    [INFO] Final Memory: 9M/17M 
    [INFO] ------------------------------------------------------------------------ 
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency- plugin:2.1:unpack (unpack) on project playn-cute-flash: Unable to resolve artifact. Could not transfer artifact com.adobe.flex:flex-sdk:zip:4.1.0.16076_mpl from/to forplay-legacy (htttp://forplay.googlecode.com/svn/mavenrepo): No response received after 60000 
    [ERROR] com.adobe.flex:flex-sdk:zip:4.1.0.16076_mpl 
    [ERROR] 
    [ERROR] from the specified remote repositories: 
    [ERROR] forplay-legacy (htttp://forplay.googlecode.com/svn/mavenrepo, releases=true, snapshots=true), 
    [ERROR] central (htttp://repo1.maven.org/maven2, releases=true, snapshots=false) 
    [ERROR] -> [Help 1] 
    [ERROR] 
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
    [ERROR] Re-run Maven using the -X switch to enable full debug logging. 
    [ERROR] 
    [ERROR] For more information about the errors and possible solutions, please read the following articles: 
    [ERROR] [Help 1] htttp://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException 
    [ERROR] 
    [ERROR] After correcting the problems, you can resume the build with the command 
    [ERROR] mvn -rf :playn-cute-flash 

注:私の評判のため、私は最大2つのハイパーリンクで質問を投稿できます。エラー出力にはより多くの情報が含まれているため、上記の各htttpは実際にhttpを読み込む必要があります。

答えて

1

がより密接に、このエラーを検査します:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency- 
plugin:2.1:unpack (unpack) on project playn-cute-flash: Unable to resolve 
artifact. Could not transfer artifact 
com.adobe.flex:flex-sdk:zip:4.1.0.16076_mpl 
from/to forplay-legacy (htttp://forplay.googlecode.com/svn/mavenrepo): 
No response received after 60000 

それは言う私はGoogleのコードの一時停止である疑いがある「の応答が60000の後に受信していません」。

問題のファイルをダウンロードしたところ、うまくいきました。だから、もう一度やり直す必要があると思う。

+0

こんにちは、返信いただきありがとうございます。私は同じことを想定し、ブラウザを介して直接ファイルをダウンロードしようとしました - 私は(私はまた、コードを何度も試してみました)。私はEclipseを使用しています - プラグインのアドレスを変更してローカルアドレスを使用できるアイディアですか? – user728785

+0

コマンドラインからMavenを実行してみてください。必要なファイルをローカルのMavenリポジトリにダウンロードすることができます。リポジトリにはEclipseがアクセスできます。あなたのトップレベルのPlayNディレクトリに 'mvn install'を実行するだけです。 – samskivert

関連する問題