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を展開して実行することです。なぜ上記のコマンドが機能しないのですか?何か不足していますか?
よく、私はソースコードをチェックし、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 –