I'm trying to use svnkit to access subversion from the svnant ant tasks with the following result:

BUILD FAILED
/path/to/build.xml:49: Cannot find javahl, svnkit nor command line svn client
    at org.tigris.subversion.svnant.SvnTask.getClientAdapter(Unknown Source)
    at org.tigris.subversion.svnant.SvnTask.execute(Unknown Source)

I've verified that all the appropriate jars are on the classpath including svnkit.jar and svnjavahl.jar.

I get the same result running ant within eclipse 20100218-1602 with a similar classpath.

Curiously the following java program that invokes the above class appears to work:

org.tigris.subversion.svnant.SvnTask task = new org.tigris.subversion.svnant.SvnTask();
ISVNClientAdapter adapter = org.tigris.subversion.svnant.SvnTask.getClientAdapter(task);
System.out.println(adapter);

prints org.tigris.subversion.svnclientadapter.svnkit.SvnKitClientAdapter

Also, the subclipse eclipse plugin uses svnkit (the one that came with eclipse) just fine.

link|improve this question
feedback

2 Answers

I think I have this solved by adding more dependent jar files to the classpath. More later...

link|improve this answer
1  
not very helpful answer... what jars did you add? – räph Nov 15 '10 at 13:17
feedback

I make a resume of content of following links:

[1] http://comments.gmane.org/gmane.comp.version-control.subversion.subclipse.user/16571

svnAnt per subversion 1.7 will not be available until the SVNKit releases version of their API that support svn 1.7

[2] http://svnkit.com/download.php

up to now (mid Jan 2012) is available only a version SVNKit 1.7.0-alpha2, svn 1.7 compatible, but does not support all svn functions. The beta of SVNKit, 1.7 compatible is planned for Jan 2012 The release of SVNKit 1.7 compatible is planned for Feb 2012

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.