第十九章 Maven实战 使用cargo-maven2-plugin插件自动化发布到Resin服务器
Maven实战 Resin插件
使用cargo-maven2-plugin插件配置Resin本地自动发布(cargo:deploy)
<!-- 通过cargo-maven2-plugin插件配置Resin自动发布(cargo:deploy) --> <plugin> <!-- 指定插件名称及版本号 --> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <version>1.4.9</version> <!-- 插件的Resin4.x配置 --> <configuration> <wait>true</wait> <!--是否说明,操作start、stop等后续操作必须等前面操作完成才能继续 --> <container> <!-- 容器的配置 --> <containerId>resin4x</containerId> <!-- 指定Resin版本 --> <type>installed</type> <!-- 指定类型:standalone, installed等 --> <home>D:/tools/resin-4.0.31</home> <!-- 指定Resin的位置,即catalina.home --> </container> <configuration> <!-- 具体的配置 --> <type>existing</type> <!-- 类型,existing:存在 --> <home>D:/tools/resin-4.0.31</home> <!-- Resin的位置,即catalina.home --> <properties> <!-- 配置属性 --> <cargo.tomcat.manager.url>http://127.0.0.1:8080/resin-admin</cargo.tomcat.manager.url> <!-- 管理地址 --> <cargo.remote.username>zhoulumin</cargo.remote.username> <!-- Resin用户名 --> <cargo.remote.password>19880627</cargo.remote.password> <!-- Resin密码 --> </properties> </configuration> <deployables> <!-- 部署设置 --> <deployable> <!-- 部署的war包名等 --> <groupId>com.chowmin.sshe</groupId> <artifactId>sshe</artifactId> <type>war</type> <properties> <context>sshe</context> <!-- 部署路径 --> </properties> </deployable> </deployables> </configuration> <executions> <!-- 执行的动作 --> <execution> <id>verify-deployer</id> <phase>install</phase> <!-- 解析install --> <goals> <goal>deployer-deploy</goal> </goals> </execution> <execution> <id>clean-deployer</id> <phase>clean</phase> <goals> <goal>deployer-undeploy</goal> </goals> </execution> </executions> </plugin>