pom引入jgit5.2.0
时间: 2023-10-13 10:30:50 浏览: 130
org.eclipse.jgit-5.10.0.202012080955-r-API文档-中文版.zip
5星 · 资源好评率100%
若想在Maven项目中引入JGit 5.2.0版本,我们可以在pom.xml文件中添加以下依赖坐标:
```xml
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>5.2.0.201812070605-r</version>
</dependency>
```
这将会在我们的Maven项目中引入JGit核心库(org.eclipse.jgit),版本为5.2.0.201812070605-r。
当我们执行Maven构建时,Maven将会自动从中心仓库下载JGit及其依赖,并将它们打包到我们的项目中,以供我们使用。
阅读全文