Maven-glassfish-plugin:如何指定部署目标?

时间:2013-02-04 12:37:54

标签: deployment maven-3 glassfish-2.x maven-glassfish-plugin

我正在使用Maven 3.0.4和maven-glassfish-plugin 2.1(http://maven-glassfish-plugin.java.net/)和Glassfish 2.1.1。

相关的POM.XML片段:

<profile>
        <id>deploy</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.glassfish.maven.plugin</groupId>
                    <artifactId>maven-glassfish-plugin</artifactId>
                    <version>2.1</version>
                    <configuration>
                        <glassfishDirectory>/home/user/glassfish</glassfishDirectory>
                        <domain>
                            <name>domain1</name>
                            <host>hostname</host>
                            <adminPort>4848</adminPort>
                        </domain>
                        <autoCreate>false</autoCreate>
                        <terse>true</terse>
                        <debug>false</debug>
                        <echo>true</echo>
                        <user>admin</user>
                        <passwordFile>/home/user/user.gfpass</passwordFile>
                        <components>
                            <component>
                                <name>${project.artifactId}</name>
                                <artifact>${project.build.directory}/${project.build.finalName}.war</artifact>
                            </component>
                        </components>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

问题是,我正在部署的Glassfish服务器为每个开发人员配置了一个独立实例,并且运行mvn glassfish:deploy会导致:

[INFO] --- maven-glassfish-plugin:2.1:deploy (default-cli) @ project ---
[INFO] deploy --port 4848 --enabled=true --host hostanme --precompilejsp=false --verify=false --echo=true --upload=true --terse=true --generatermistubs=false --passwordfile /home/user/user.gfpass --interactive=false --availabilityenabled=false --name project --target server --force=true --user admin /home/user/git/project/target/project-1.0.0-SNAPSHOT.war
[ERROR] CLI171 Command deploy failed : Application project is already deployed on other targets. Please remove all references or specify all targets (if not using asadmin command line) before attempting redeploy operation
[ERROR] Deployment of /home/user/git/project/target/project-1.0.0-SNAPSHOT.war failed.

在执行的命令中注意--target server

如何在POM中指定我要部署到哪个实例(即target)?

2 个答案:

答案 0 :(得分:2)

经过一些研究,答案是 NO,我不能

我知道有两种选择:

  1. 使用exec-maven-plugin使用所需参数调用asadmin,或
  2. 对您自己的maven-glassfish-plugin版本进行更改 必要的(这就是我现在所做的)。
  3. 事实证明,该插件非常简单,我可以根据自己的需要进行修改。建造它更麻烦,但这是另一个故事。

答案 1 :(得分:0)

您好我的解决方案是:

我把pom留作重新部署执行

        <execution>
                <id>gf-deploy</id>
                <phase>package</phase>
                <goals>
                    <goal>redeploy</goal>
                </goals>
            </execution>

然后我修改了asadmin.bat文件,并且在脚本调用appserver-cli.jar文件的行之后我添加了3行,注意重新部署调用undeploy和deploy命令,以便maven glassfish插件&这里的技巧是在undeploy命令运行时打印一些东西(Tihs会混淆maven插件,好像undeploy命令总是成功),但是,当asadmin命令部署时,流程将正常运行。

:run
if NOT %1 == undeploy goto :end
%JAVA% -jar "%~dp0..\lib\client\appserver-cli.jar" %*
ECHO "TEST"
:end

if %1 == undeploy goto :end1
%JAVA% -jar "%~dp0..\lib\client\appserver-cli.jar" %*
:end1

做完这个修改后,整个工作太棒了!