如何在Maven中编译pom.xml而不生成项目?

发布于 2024-12-09 18:35:59 字数 101 浏览 0 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(1

捶死心动 2024-12-16 18:35:59

从你的问题中我不确定你想要什么。如果您有 pom.xml 文件并且想要下载其中定义的所有依赖项,您可以调用

mvn dependency:copy-dependencies

有关更多选项,请查看 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

mvn dependency:copy-dependencies

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.

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