文档说明
1、文档概述:主要是描述Java 集成svnkit 的基本使用方法
导入依赖
<dependency>
<groupId>org.tmatesoft.svnkit</groupId>
<artifactId>svnkit</artifactId>
<version>1.10.1</version>
</dependency>
最新版本:当前版本是1.10.1
初始化版本库
DAVRepositoryFactory.setup();
SVNRepositoryFactoryImpl.setup();
FSRepositoryFactory.setup();
备注:一般性使用static void 方法进行初始化
验证登录
SVNRepository repository=SVNRepositoryFactory.create(SVNURL.parseURIEncoded(svnRoot));
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager(username, password);
repository.setAuthenticationManager(authManager);
DefaultSVNOptions options = SVNWCUtil.createDefaultOptions(true);
return SVNClientManager.newInstance(options, authManager);
备注
暂时先记录上述