将ant ivy项目中的jar导入到maven中
我正在开发一个 ant 项目,我想在我的 Maven 项目中使用它创建的 jar。 ant 项目使用 ivy 来管理其依赖关系。
如果可能的话,有没有简单的方法可以做到这一点,而无需更改他们这边的任何代码。
I am working on an ant project and i want to use the jar created by it , in my maven project.
The ant project employs ivy to manage its dependency.
Is there any easy way to do this if possible without changing any code on their side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您希望能够将基于 ivy 的项目生成的工件发布到 Maven 存储库,以便基于 mvn 的项目可以解析它们。
尝试 http://draconianoverlord.com/2010/ 07/18/publishing-to-maven-repos-with-ivy.html
一旦基于 ivy 的项目将其工件发布到 mvn 存储库,那么基于 mvn 的项目应该能够解决已发布的工件。
It sounds like you want to be able to publish artefacts generated by your ivy-based project to a maven repo so they can be resolved by the mvn-based project.
Try http://draconianoverlord.com/2010/07/18/publishing-to-maven-repos-with-ivy.html
Once the ivy-based project has published its artefacts to the mvn repo, then the mvn-based project should be able to resolve the published artefacts.