Hello Dmitry, > any documentation or use example for SvnOperationFactory?
Not in this beta1 build, but it is more or less straightforward: SvnOperationFactory of = new SvnOperationFactory(); SvnUpdate up = of.createUpdate(); up.setSingleTarget(SvnTarget.fromFile(path)); up.setDepth(SVNDepth.INFINITY); up.run(); Alexander Kitaev, TMate Software, http://subgit.com/ - Svn to Git Migration! http://svnkit.com/ - Java [Sub]Versioning Library! http://hg4j.com/ - Java Mercurial Library! http://sqljet.com/ - Java SQLite Library! On 19 February 2012 17:14, Dmitriy Shabanov <shaban...@gmail.com> wrote: > Hi, > > On Sat, Feb 18, 2012 at 2:08 AM, Alexander Kitaev > <alexander.kit...@svnkit.com> wrote: >> >> I'm glad to announce that SVNKit 1.7.0 beta1 is published and >> available for download from our site at http://svnkit.com/. > > > great news. > >> >> SVNKit 1.7.0-beta1 provides full support for the Subversion 1.7 >> working copy format and implements the following APIs: >> >> 1) Old SVNKit high-level API (SVNClientManager) >> 2) New SVNKit high-level API (see SvnOperationFactory at >> org.tmatesoft.svn.core.wc2 package) > > > any documentation or use example for SvnOperationFactory? > >> >> 3) SVNKit low-level API to work directly with repository (SVNRepository) >> 4) JavaHL APIs - both legacy one in "org.tigris" namespace and new >> "org.apache" one. >> > > -- > Dmitriy Shabanov