使用 java 方法创建 SVN 存储库

Creating a SVN repository with a java method

我正在开发一个 spring 引导项目,我需要构建一个方法来为 svnserver 创建一个 SVN 存储库。 我找到了 SVNKit 库,所以我在 Eclipse 中从市场安装了 Subclipse,但是当我进行导入时,它无法解析它们。

这是我找到的解决方案

   2 import org.tmatesoft.svn.core.SVNURL;
   3 import org.tmatesoft.svn.core.SVNException;
   4 ...
   5 
   6     try {
   7         String tgtPath = "C:/repos/root/path";
   8         SVNURL tgtURL = SVNRepositoryFactory.createLocalRepository( new File( tgtPath ), true , false );
   9     } catch ( SVNException e ) {
  10         //handle exception
  11     }

有什么想法吗

你必须在你的 pom.xml 中添加 svnkit 依赖项,尝试添加这个做你的项目 pom.xml 和 运行 一个干净的,你的导入应该得到解决:

<dependency>
    <groupId>org.tmatesoft.svnkit</groupId>
    <artifactId>svnkit</artifactId>
    <version>1.10.1</version>
</dependency>