从 maven2 存储库创建项目
我想从 maven2 存储库(POM 和源)中的工件创建一个 maven2 项目。当然,我可以创建目录结构,复制 POM 文件并手动提取源代码。但我想知道是否可以使用 Maven 自动执行此任务。
I want to create a maven2 project from artifacts in maven2 repository (POM and sources). Of course,I can create the directory structure, copy POM file and extract the sources manually. But I wonder if I can automate this task with maven.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许 dependency:unpack-dependency 可以帮助你?注意,有诸如classifier、copyPom、outputDirectory、type等可用于配置的参数输出的内容。
Maybe dependency:unpack-dependencies can help you? Note, there are parameters such as classifier, copyPom, outputDirectory, type, etc that can be used to configure the content of the output.
也许 Maven archetype 插件 可以满足您的需求?它允许您创建一个原型,然后可以使用它来创建项目。
Perhaps Maven archetype plugin can serve your need? It allows you to create an archetype, which can then be used to create a project.