[go: up one dir, main page]

File: readme.txt

package info (click to toggle)
svnclientadapter 1.10.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,568 kB
  • ctags: 2,864
  • sloc: java: 15,865; xml: 181; sh: 38; makefile: 14
file content (24 lines) | stat: -rw-r--r-- 1,020 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

SVNClientAdapter
===============

SVNClientAdapter is a high-level Java API for Subversion.

It can use one of 3 low-level svn client implementations to provide access to the Subversion API:

- JavaHL (JNI) subversion library (http://svn.collab.net/repos/svn/trunk/subversion/bindings/java/javahl/)
- SVNKit (pure Java) (http://svnkit.com/)
- svn(.exe) command line client (some functionality unavailable/unreliable with <1.3 command line clients)

SVNClientAdapter is easier to use than SVNClient class and has more features.

How to use it :
=============
You will need to add svnClientAdapter.jar in your classpath. 
If you wish to use JNI client (recommended), you will need svnjavahl.jar in your classpath.
If you wish to use pure java implementation of subversion low-level api, you will need svnkit.jar and ganymed.jar in your classpath.
If you wish to use command line client, you will need that client be present on your system path.

See the src/samples folder to see how to use it.

cchabanois at no-log.org