将 Maven 工件发布到文件上传 servlet

发布于 2024-12-17 18:53:51 字数 116 浏览 2 评论 0原文

我们有一个 servlet,我们将 zip 文件发布到其中。我想自动构建 zip 并使用 maven 将其发布到 servlet。有没有办法使用 Maven 插件来做到这一点,或者我应该只使用外部工具或 ant 任务?

We have a servlet that we post a zip file to. I would like to automate building the zip and posting it to the servlet with maven. Is there a way to do that with maven plugins or should I just use external tools or ant tasks?

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

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

发布评论

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

评论(3

撧情箌佬 2024-12-24 18:53:51

我们最终使用了一些 ant/curl:

    <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.6</version>
        <executions>
            <execution>
                <phase>package</phase>
                <goals>
                    <goal>run</goal>
                </goals>
                <configuration>
                    <target>
                        <exec executable="curl">
                            <arg value="-F"/>
                            <arg value="file=@target/templates.zip"/>
                            <arg value="http://localhost:8080/template/process"/>
                        </exec>
                    </target>
                </configuration>
            </execution>
        </executions>
    </plugin>

We ended up using some ant/curl:

    <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.6</version>
        <executions>
            <execution>
                <phase>package</phase>
                <goals>
                    <goal>run</goal>
                </goals>
                <configuration>
                    <target>
                        <exec executable="curl">
                            <arg value="-F"/>
                            <arg value="file=@target/templates.zip"/>
                            <arg value="http://localhost:8080/template/process"/>
                        </exec>
                    </target>
                </configuration>
            </execution>
        </executions>
    </plugin>
懒猫 2024-12-24 18:53:51

Maven 程序集插件 应该有助于解决此用例。

The Maven assembly plugin should help with this use case.

注定孤独终老 2024-12-24 18:53:51

部署插件 可以将构建的 zip 工件传输到 servlet。 deploy-file 目标具有参数,您可以在其中使用可以显式设置要上传的 URL。或者您可以在 POM 中设置 分发管理部分 以标准方式执行此操作。

The deploy plugin can transfer your built zip artifact to the servlet. The deploy-file goal has parameters where you can explicitly set the URL to upload to. Or you can set up the distribution management section in the POM to do it the standard way.

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