to configure th plugin, add the following to your build plugin.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>was6-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>ejbdeploy</goal>
</goals>
</execution>
</executions>
<configuration>
<wasHome>${wasHome}</wasHome>
<legacyMode>true</legacyMode>
<verbose>true</verbose>
</configuration>
<!-- might need add dependencies here -->
</plugin>
本文介绍如何配置Maven的was6-maven-plugin插件以实现EJB的部署。该插件允许用户通过Maven自动化构建过程来部署EJB到WebSphere Application Server环境中。配置包括设置`groupId`, `artifactId`, `version`等属性。
1万+

被折叠的 条评论
为什么被折叠?



