2015-01-11 2 views
0

maven plugin을 통해 JBoss AS 7 웹 응용 프로그램에 배포하려고합니다. 나는 구성 걸렸고 :Maven 플러그인을 통해 JBoss에 배포하는 방법은 무엇입니까?

<plugin> 
    <groupId>org.jboss.as.plugins</groupId> 
    <artifactId>jboss-as-maven-plugin</artifactId> 
    <version>7.6.Final</version> 
    <configuration> 
     <hostname>localhost</hostname> 
     <jbossHome>D:\jboss-as-web-7.0.0.Final</jbossHome> 
     <fileName>target/corporate.war</fileName> 
    </configuration> 
</plugin> 

을하지만 실행하려고 할 때 MVN JBoss에 같은 :

[ERROR] Failed to execute goal org.jboss.as.plugins:jboss-as-maven-plugin:7.6.Final:deploy (default-cli) on project corporate: Error executing FORCE_DEPLOY: Operatio 
n failed: Channel closed -> [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] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException 

가 어떻게 그 문제를 해결할 수 : 나는 다음과 같은 오류가 발생했습니다가 배포하는?

답변

1

최신 AS 7 릴리스 - 7.1.1을 시험해보십시오. 최종.

관련 문제