2016-12-06 13 views
0

のpom.xmlwildflyのMavenプラグインドメインは日食の実行コンフィギュレーションに

<plugin> 
      <groupId>org.wildfly.plugins</groupId> 
      <artifactId>wildfly-maven-plugin</artifactId> 
      <version>1.1.0.Beta1</version> 
      <configuration> 
       <domain> 
        <server-groups> 
        <server-group>main-server-group</server-group> 
        </server-groups> 
       </domain> 
      </configuration> 
     </plugin> 

を展開することは、私の質問は以下のドメインパスが

{$path of pom.xml}\target\wildfly-run\wildfly-8.0.0.CR1\domain\tmp 

が、パス空である理由

org.wildfly.plugins:wildfly-maven-plugin:run -Dwildfly.version=8.0.0.CR1 

ですスタンドアロンの

{$path of pom.xml}\target\wildfly-run\wildfly-8.0.0.CR1\standalone\tmp\vfs\temp\tempd2a5c6044ecaf908\content-b94122b24d483bc5\***(xxx.war files unzip here) 

pom.xml構成の公式ガイドhttps://docs.jboss.org/wildfly/plugins/maven/latest/examples/deployment-example.htmlは、ドメインサーバーにxxx.warを展開して実行することです。なぜ上記のコマンドが機能しないのですか?何か不足していますか?

+0

よく、私はソースコードをチェックし、mvn wildfly:mvn wildfly:スタンドアロンモードでサーバを起動するだけです。https://docs.jboss.org/wildfly/plugins/ maven/latest/run-mojo.html \t https://github.com/wildfly/wildfly-maven-plugin/blob/master/plugin/src/main/java/org/wildfly/plugin/server/RunMojo.java https://docs.jboss.org/wildfly/plugins/maven/latest/start-mojo.html https://github.com/wildfly/wildfly-maven-plugin/blob/master/plugin/src/main /java/org/wildfly/plugin/server/StartMojo.java –

答えて

0

runの目標は、スタンドアロンサーバーでのみ有効です。ドメインサーバーは起動しません。すでに実行されている既存のドメインサーバーにアプリケーションを展開する場合は、deployという目標を使用する必要があります。

関連する問題