使用 Maven 下载依赖项,而不需要对我的项目进行 Maven 修改
我正在考虑使用 Spring Batch,这似乎主要是 使用 Maven 进行分布式/管理。我不是 Maven 用户(我总是不使用 Ant),并且不觉得我应该纯粹为了能够使用 Spring Batch 而需要对我的项目进行 mavenise。
是否有任何工具或 Maven 命令可用于下载各种依赖项? Spring Batch 的最新版本没有标记为“具有依赖项”。
我应该创建一个使用 Spring Batch 的 Maven 项目,然后下载类似的依赖项,然后提取我需要的 jar 吗?
I am looking at using Spring Batch, which seems to mainly be distributed/managed using Maven. I am not a Maven user (I've always got away with using Ant), and don't feel I should need to mavenise my project purely in order to be able to use Spring Batch.
Are there any tools or Maven commands that I can use to download the various dependencies? There are no recent releases of Spring Batch that are marked "with dependencies".
Should I just create a Maven project that uses Spring Batch and then download the dependencies like that and then extract the jars that I need?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用maven ant工具或ivy将构建的ant连接到maven依赖/存储库系统。
Use the maven ant tools or ivy to connect an ant built to the maven dependency/repository system.
这是我用的。如果将其放入 pom.xml 中,则可以
从命令行运行,最终会在 libs 目录中得到 jar。
Here's what I use. If you put this is in pom.xml, you can run
from a command line and you'll end up with jars in your libs directory.