使用 Cargo 部署当前项目和另一个 WAR

发布于 2024-10-21 04:34:42 字数 190 浏览 5 评论 0原文

我正在使用 Cargo 与 Maven 进行集成测试。我在预集成中找到了从 .m2 存储库部署另一场战争的示例 此处 .有人可以指导我如何使用 Cargo 部署当前项目和另一场战争吗?

I'm using Cargo for Integration tests with Maven. I found examples of deploying another war from .m2 repo in pre-integration here . Can somebody guide me on how to deploy current project and another war using Cargo?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-10-28 04:34:42

查看 Cargo 插件配置的 deployables 标签。

此配置应该部署您当前的项目和 AnotherWAR 项目。

 <profiles>
      <profile>
          <id>integration-test</id>
          <dependencies>
              <dependency>
                  <groupId>com.me</groupId>
                  <artifactId>AnotherWAR</artifactId>
                  <version>1.2</version>
                  <type>war</type>
              </dependency>
          </dependencies>
          <build>
              <plugins>
                  <plugin>
                    <groupId>org.codehaus.cargo</groupId>
                    <artifactId>cargo-maven2-plugin</artifactId>
                    <version>1.2.4</version>
                    <configuration>
                        <deployables>
                            <deployable>
                                <groupId>com.me</groupId>
                                <artifactId>AnotherWAR</artifactId>
                            </deployable>
                        </deployables>
                    </configuration>
                </plugin>
              </plugins>
          </build>
      </profile>
  </profiles>

然后只需在“集成测试”配置文件处于活动状态的情况下调用 Cargo:deploy

Check out the deployables tag for Cargo Plugin's configuration.

This configuration should deploy your current project and the AnotherWAR project.

 <profiles>
      <profile>
          <id>integration-test</id>
          <dependencies>
              <dependency>
                  <groupId>com.me</groupId>
                  <artifactId>AnotherWAR</artifactId>
                  <version>1.2</version>
                  <type>war</type>
              </dependency>
          </dependencies>
          <build>
              <plugins>
                  <plugin>
                    <groupId>org.codehaus.cargo</groupId>
                    <artifactId>cargo-maven2-plugin</artifactId>
                    <version>1.2.4</version>
                    <configuration>
                        <deployables>
                            <deployable>
                                <groupId>com.me</groupId>
                                <artifactId>AnotherWAR</artifactId>
                            </deployable>
                        </deployables>
                    </configuration>
                </plugin>
              </plugins>
          </build>
      </profile>
  </profiles>

Then just call cargo:deploy with the 'integration-test' profile active

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文