このページから、Cargo Maven プラグインが GlassFish 3.x へのホット リモート デプロイメントをサポートしていないことがわかりましたか? 私が間違っている場合、そのようなタイプの操作をサポートするように構成するにはどうすればよいですか?
たぶん、他のプラグインを使用する必要がありますか?「ホット」モードで、HTTP 経由で GlassFish リモート インストールにデプロイしたいと考えています。
このページから、Cargo Maven プラグインが GlassFish 3.x へのホット リモート デプロイメントをサポートしていないことがわかりましたか? 私が間違っている場合、そのようなタイプの操作をサポートするように構成するにはどうすればよいですか?
たぶん、他のプラグインを使用する必要がありますか?「ホット」モードで、HTTP 経由で GlassFish リモート インストールにデプロイしたいと考えています。
これはあなたの質問に答えていますか?
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<container>
<containerId>glassfish3x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.hostname>dev-server-01</cargo.hostname>
<cargo.servlet.port>8080</cargo.servlet.port>
<cargo.remote.username>user</cargo.remote.username>
<cargo.remote.password>pass</cargo.remote.password>
<cargo.glassfish.domain.name>domain-name</cargo.glassfish.domain.name>
<cargo.glassfish.adminPort>4848</cargo.glassfish.adminPort>
</properties>
</configuration>
<deployables>
<deployable>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<type>war</type>
</deployable>
</deployables>
</configuration>
<dependencies>
<dependency>
<groupId>org.glassfish.main.deployment</groupId>
<artifactId>deployment-client</artifactId>
<version>3.1.2.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
これは私がこれまでに行ったことです:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<tasks>
<tempfile property="ant.temp-ear" deleteonexit="true" destdir="/tmp" />
<copy
file="${project.build.directory}/${project.build.finalName}.${project.packaging}"
tofile="${ant.temp-ear}" verbose="true" />
<exec executable="${glassfish.home}/glassfish/bin/asadmin"
failonerror="true">
<arg value="--user=${glassfish.username}"/>
<arg value="--passwordfile=${glassfish.passwordfile}"/>
<arg value="--interactive=false"/>
<arg value="--host=${glassfish.host}"/>
<arg value="--port=${glassfish.adminport}"/>
<arg value="deploy"/>
<arg value="--force"/>
<arg value="--name=${project.artifactId}"/>
<arg value="${ant.temp-ear}"/>
</exec>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
完全に動作しますがasadmin
(GlassFish 全体も) を実行するのと同じマシンにインストールする必要がありmvn
ます。
Cargo プラグインで同じタスクを実行することは可能ですか?