我想从jenkins部署到jboss eap。我已经配置了一个工作,使用存储库连接器插件将工件从nexus存储库拉到工作空间。我想从jenkins部署到jboss EAP.Is有我可以实现的方式吗?
我认为有一种方法可以使用jboss-as-maven-plugin.is,我可以告诉jboss-as-maven-plugin从工作区位置接受战争吗?
还有其他选择吗?
答案 0 :(得分:1)
您可以配置maven插件,如:
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.9.Final</version>
<configuration>
<execute-commands>
<commands>
<command>deploy target/core-services.war</command>
</execute-commands>
<hostname>localhost</hostname>
<username>{your username}</username>
<password>{your passwprd}</password>
</configuration>
</plugin>