tags:

views:

37

answers:

4

I want to implement a functionality in which I want to do some svn related operations for example:- update, commit, revert etc.. through my Java code.

Thanks in advance.

+1  A: 

Perhaps you should use ProcessBuilder or Runtime.exec() to call the actual commands of SVN.

Or you can directly use library like http://svnkit.com/

pavanlimo
A: 

Have a look at SVNKit http://svnkit.com/.

Pram
A: 

If you're looking for a pure Java solution - check out SVNKit.

Owen
A: 

Check out the Subversion Java API.

johnnieb