2016-09-16 7 views
0

GitHub에서 오픈 소스 프로젝트를 배우려고합니다. 그것의 다중 모듈 프로젝트 및 그, 나는 성공적으로 mvn을 성공적으로 설치할 수 있습니다.하지만 문제는 내가 mvn wildfly:deploy -DskipTests=true을 사용하여 배포 할 때 오류가 발생합니다. 어떻게이 유형의 프로젝트를 로컬로 설치할 수 있으며 성공적으로 배치하는 방법을 도와주세요. 그것은 내가 사용 실행하려고하면 아래 --->org.wildfly.extension.undertow JBAS010409 : 언 바운드 데이터 소스

$mvn wildfly:deploy -DskipTests=true 
[INFO] Scanning for projects... 
[INFO]                   
[INFO] ------------------------------------------------------------------------ 
[INFO] Building hibernate-ogm-hiking-demo 1.0-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[INFO] 
[INFO] >>> wildfly-maven-plugin:1.0.1.Final:deploy (default-cli) > package @ hibernate-ogm-hiking-demo >>> 
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ hibernate-ogm-hiking-demo --- 
[INFO] Using 'UTF-8' encoding to copy filtered resources. 
[INFO] Copying 2 resources 
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ hibernate-ogm-hiking-demo --- 
[INFO] Nothing to compile - all classes are up to date 
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ hibernate-ogm-hiking-demo --- 
[INFO] Using 'UTF-8' encoding to copy filtered resources. 
[INFO] Copying 1 resource 
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ hibernate-ogm-hiking-demo --- 
[INFO] Nothing to compile - all classes are up to date 
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ hibernate-ogm-hiking-demo --- 
[INFO] Tests are skipped. 
[INFO] 
[INFO] --- maven-war-plugin:2.4:war (default-war) @ hibernate-ogm-hiking-demo --- 
[INFO] Packaging webapp 
[INFO] Assembling webapp [hibernate-ogm-hiking-demo] in [/media/yogesh/68BFB7DA4E8F9CBB/TEMP/hibernate-demos-master/hibernate-ogm/hiking-demo/target/hibernate-ogm-hiking-demo-1.0-SNAPSHOT] 
[INFO] Processing war project 
[INFO] Copying webapp resources [/media/yogesh/68BFB7DA4E8F9CBB/TEMP/hibernate-demos-master/hibernate-ogm/hiking-demo/src/main/webapp] 
[INFO] Webapp assembled in [109 msecs] 
[INFO] Building war: /media/yogesh/68BFB7DA4E8F9CBB/TEMP/hibernate-demos-master/hibernate-ogm/hiking-demo/target/hibernate-ogm-hiking-demo-1.0-SNAPSHOT.war 
[INFO] 
[INFO] <<< wildfly-maven-plugin:1.0.1.Final:deploy (default-cli) < package @ hibernate-ogm-hiking-demo <<< 
[INFO] 
[INFO] --- wildfly-maven-plugin:1.0.1.Final:deploy (default-cli) @ hibernate-ogm-hiking-demo --- 
Sep 16, 2016 12:21:47 PM org.xnio.Xnio <clinit> 
INFO: XNIO version 3.2.0.Final 
Sep 16, 2016 12:21:47 PM org.xnio.nio.NioXnio <clinit> 
INFO: XNIO NIO Implementation Version 3.2.0.Final 
Sep 16, 2016 12:21:47 PM org.jboss.remoting3.EndpointImpl <clinit> 
INFO: JBoss Remoting version 4.0.0.Final 
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 7.268 s 
[INFO] Finished at: 2016-09-16T12:21:53+05:30 
[INFO] Final Memory: 27M/341M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] Failed to execute goal org.wildfly.plugins:wildfly-maven-plugin:1.0.1.Final:deploy (default-cli) on project hibernate-ogm-hiking-demo: Could not execute goal deploy on /media/yogesh/68BFB7DA4E8F9CBB/TEMP/hibernate-demos-master/hibernate-ogm/hiking-demo/target/hibernate-ogm-hiking-demo-1.0-SNAPSHOT.war. Reason: I/O Error could not execute operation '{ 
[ERROR] "operation" => "read-attribute", 
[ERROR] "address" => [], 
[ERROR] "name" => "launch-type" 
[ERROR] }': java.net.ConnectException: JBAS012144: Could not connect to http-remoting://127.0.0.1:9990. The connection timed out 
[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] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException 

wildfly 오류에`MVN JBoss에 같은 : 같은 오류가 진정한 -DskipTests = 배포 할 수 있습니다.

답변

1

wilfdly:deploy 대상은 실행중인 Wildfly에 이슈를 배포하는 것입니다. 당신의 경우에는 Wildfly가 없습니다.

wildfly:run 대상을 사용하여 Wildfly를 시작하고 이슈를 배포 할 수 있습니다.

은 참조 :

+0

https://docs.jboss.org/wildfly/plugins/maven/latest/usage.html 그냥 오류 메시지가 너무 좋다 1.1.0.Alpha11 너무 메모를 추가 할 수 있습니다. 이 오류 메시지는별로 유용하지 않습니다. –

+0

[정보] BUILD FAILURE [정보] ---------------------------------------- -------------------------------- [INFO] 총 시간 : 3.227 초 [정보] 완료 : 2016- 09-19T09 : 29 : 25 + 05 : 30 [INFO] 최종 메모리 : 17M/212M [INFO] ------------------------- ----------------------------------------------- [오류 ] 현재 프로젝트와 저장소 [org (.home/yogesh/.m2/repository)에서 사용할 수있는 플러그인 그룹 [ , central (https://repo.maven.apache.org/maven2)] -> [Help 1] –