2013-04-07 24 views
10

私はmavenにちょっと新しく、これはmavenのもので、私のシェルとは関係ないと仮定していますが、-eスイッチを使ってエラーを特定してみると、このような不完全なものが得られます:mvn -e完全なスタックトレース?

[INFO] ------------------------------------------------------------------------ 
[ERROR] BUILD ERROR 
[INFO] ------------------------------------------------------------------------ 
[INFO] Deployment failed and was rolled back. 
[INFO] ------------------------------------------------------------------------ 
[INFO] Trace 
org.apache.maven.lifecycle.LifecycleExecutionException: Deployment failed and was rolled back. 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:719) 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:569) 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:539) 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387) 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348) 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180) 
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328) 
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138) 
at org.apache.maven.cli.MavenCli.main(MavenCli.java:362) 
at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:601) 
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) 
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) 
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) 
at org.codehaus.classworlds.Launcher.main(Launcher.java:375) 
Caused by: org.jboss.as.plugin.common.DeploymentExecutionException: Deployment failed and was rolled back. 
at org.jboss.as.plugin.deployment.standalone.StandaloneDeployment.execute(StandaloneDeployment.java:140) 
at org.jboss.as.plugin.deployment.AbstractDeployment.executeDeployment(AbstractDeployment.java:119) 
at org.jboss.as.plugin.deployment.AbstractDeployment.doExecute(AbstractDeployment.java:141) 
at org.jboss.as.plugin.deployment.AbstractAppDeployment.doExecute(AbstractAppDeployment.java:70) 
at org.jboss.as.plugin.deployment.AbstractDeployment.execute(AbstractDeployment.java:111) 
at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490) 
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694) 
... 17 more 
[INFO] ------------------------------------------------------------------------ 

「... 17個」のものはどうすればわかりますか?どのMavenタスクが失敗しているかを正確に把握するのに役立つと思いますか?ヘルプやドキュメントへのリンクありがとう!

P.S.興味があり、実際の問題を把握する手助けをしたいと思っているなら、私は単純に "mvn clean package jboss-as:deploy"を実行しています。それを自分で考えないでください。

+0

'more things'は既にstacktraceの他の場所にあるはずです - http://stackoverflow.com/questions/1167888/howto-increase-lines-of-java-stack-trace-dump、しかし私はそうではありません100%確実。 –

+0

@PaulGrimeそうだね、リンクありがとう! – mwillson

+0

'-e -X' Mavenスイッチの両方を使って完全なログを取得できますか?もう一度、ありがとう。 –

答えて

1

これは厳密な回答ではありませんが、調査に役立つ可能性があります。

case ROLLED_BACK: 
    throw new DeploymentExecutionException("Deployment failed and was rolled back.", actionResult.getDeploymentException()); 

とルート例外(actionResult.getDeploymentException())このDeploymentExecutionExceptionに渡されます。

StandaloneDeployment (line 140)のソースコード(警告は、これはあなたが使用しているバージョンではないかもしれないが)DeploymentExecutionExceptionがスローされた場所を示してい。

Mavenスタックトレースでこのルート例外が発生するとは思っていましたが、あなたのケースではないようです。

いつでもdebugging the plugin itselfを試して、上記の行にブレークポイントを置くことができます。

+0

Eclipseを使用していないのに、これは良い情報です。あまりにも長くそれを理解できない場合は、別の質問でより詳細なサーバー情報を投稿します。 – mwillson

+0

デバッグ自体はEclipseに依存しません。別のIDEを使用している場合は、同様の機能を持ち、デバッグ用Javaプロセスに自身をアタッチします。 –

関連する問題