Skip to content

subclipse/svnclientadapter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SVNClientAdapter

Build Status

SVNClientAdapter is a high-level Java API for Subversion. You can write your code to the SVNClientAdapter Java interfaces and then at runtime run it with any of the three adapter implementations:

  1. JavaHL - (http://subversion.apache.org/docs/)
  2. Command Line - (http://subversion.apache.org/packages.html)
  3. SVNKit - (http://svnkit.com)

The first two implementation require that the native Subversion packages and libraries are installed as the Java code will use those libraries. In the case of JavaHL it talks to the native library via JNI and the command line it of course executes by running the command line process and capturing the stdout. The command line adapter is not actively maintained and does not currently implement many of the newer methods added over the last several years.

SVNKit is a pure-Java reverse-engineering of the Subversion API. SVNKit implements the JavaHL interface and SVNClientAdapter uses the library via this interface. Refer to the SVNKit website for Terms and Conditions.

Examples

A sample project is maintained in this repository. It shows how to initialize and use the library.

License

The source code for this project is licensed under Apache 2.0 license.