2
我看到支持GlassFish v3,但在線示例很稀疏。我繼續從貨物得到同樣的錯誤回來: 找不到GlassFish管理CLI JAR:管理-cli.jarGlassFish v3 cargo-maven2-plugin
這裏是我的POM
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.0.3</version>
<configuration>
<container>
<containerId>glassfish3x</containerId>
<type>installed</type>
</container>
<configuration>
<type>standalone</type>
<home>C:\glassfishv3</home>
<properties>
<cargo.hostname>localhost</cargo.hostname>
<cargo.servlet.port>8082</cargo.servlet.port>
<cargo.remote.username></cargo.remote.username>
<cargo.remote.password></cargo.remote.password>
</properties>
</configuration>
<deployer>
<type>installed</type>
<deployables>
<deployable>
<groupId>${groupId}</groupId>
<artifactId>${artifactId}</artifactId>
<type>war</type>
</deployable>
</deployables>
</deployer>
</configuration>
</plugin>
糾正雙響炮:
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.0.3</version>
<configuration>
<container>
<containerId>glassfish3x</containerId>
<type>installed</type>
<home>C:\glassfishv3</home>
</container>
<configuration>
<type>standalone</type>
<properties>
<cargo.hostname>localhost</cargo.hostname>
<cargo.servlet.port>8082</cargo.servlet.port>
<!-- if no username/password don't use these, it will fail
<cargo.remote.username></cargo.remote.username>
<cargo.remote.password></cargo.remote.password> -->
</properties>
</configuration>
<deployer>
<type>installed</type>
<deployables>
<deployable>
<groupId>${groupId}</groupId>
<artifactId>${artifactId}</artifactId>
<type>war</type>
</deployable>
</deployables>
</deployer>
</configuration>
</plugin>
是在glassfishv3/glassfish /模塊中存在的模塊。我想知道如果貨物正在查看以獲取正確的應用服務器信息 –
Drew
2010-09-30 17:50:47
@Drew,請參閱我的編輯。這個插件的配置真的很奇怪...... – romaintaz 2010-09-30 18:23:10
就是這樣,老實說,我在閱讀你的答案之前閱讀了這個鏈接,並且文檔還沒有做出。他們需要獲得更好的文檔。我想知道爲什麼我的tomcat配置文件工作正常,直到我意識到它甚至不使用它發佈到管理器url的文件系統。非常感謝! – Drew 2010-10-01 12:05:08