将 Maven 工件发布到文件上传 servlet
我们有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我们最终使用了一些 ant/curl:
We ended up using some ant/curl:
Maven 程序集插件 应该有助于解决此用例。
The Maven assembly plugin should help with this use case.
部署插件 可以将构建的 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.