如何在Maven中编译pom.xml而不生成项目?
我有 pom.xml 文件,其中包含要从 svn 签出的依赖项和文件,因此无需生成项目。我只需要这些库和那些文件,那么有什么方法可以在不生成具有maven目录结构的项目的情况下获取它们呢?
I have pom.xml file that contains dependencies and files to checkout from svn so there is no no need to generate project. I just need these libraries and those files, so is there any way to get them without generating a project with maven directory structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从你的问题中我不确定你想要什么。如果您有 pom.xml 文件并且想要下载其中定义的所有依赖项,您可以调用
有关更多选项,请查看 maven copy-dependencies 任务页面
如果您询问如何创建不包含任何代码而仅包含依赖项的 pom,您可以通过指定
pom 来实现包装。
I'm not sure from your question what do you want. If you have pom.xml file and you want to download all dependencies defined in it, you can call
For more options look maven copy-dependencies task page
If you are asking how to create pom that will contain no code, but only dependencies, you can do that by specifying
pom
packaging.