作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 GIT 的新手,想使用 JGit 创建存储库并将其从 Java maven 项目的其他操作旁边删除。我想知道这需要哪些依赖项。
以下链接是我读到的关于 JGit 的内容 http://wiki.eclipse.org/JGit/User_Guide#Getting_Started
最佳答案
您可以在 Maven 中使用 JGit(参见 http://www.eclipse.org/jgit/download/):
<repositories>
<repository>
<id>jgit-repository</id>
<url>http://download.eclipse.org/jgit/maven</url>
</repository>
</repositories>
<!-- Core Library -->
<dependencies>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>1.0.0.201106090707-r</version>
</dependency>
</dependencies>
关于maven - 如何在 Maven 中使用 JGit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7066032/
我是一名优秀的程序员,十分优秀!