Questions tagged [svnkit]

SVNKit is a pure Java Subversion toolkit. SVNKit allows a Java developer to access Subversion features from within a Java application.

Subversion is an open source version control system, originally developed by CollabNet, Inc. and currently supported by the Apache Software Foundation.

SVNKit is a pure Java Subversion toolkit - it implements all Subversion features and provides APIs to work with Subversion working copies, access and manipulate Subversion repositories - everything within your Java application.

307 questions
6
votes
1 answer

SVN: '0x00400039: Collecting Resources'

I convert a static project to javascript project in Eclipse IDE. Now some *.js file cannot be committed and throw the error below: SVN: '0x00400039: Collecting Resources' operation finished with error: null java.lang.NullPointerException
flowerszhong
  • 307
  • 2
  • 11
5
votes
3 answers

Svnkit with Subclipse under Eclipse Indigo

In my Eclipse Indigo (64-bit) under Ubuntu, the SVNKit client doesn't show up in Eclipse preferences -> Team -> SVN. I've installed subclipse from Eclipse marketplace. Since after installing subclipse, the SVNKit wasn't available, I installed svnkit…
Markus Pscheidt
  • 6,853
  • 5
  • 55
  • 76
5
votes
2 answers

SVNKIT doExport method - what is pegRevision?

When using the doExport() method of svnkit I don't understand the meaning of one parameter. I still don't get it even after looking at the Javadocs What does the parameter pegRevision mean? The docs say pegRevision - the revision at which url will…
nemoo
  • 3,269
  • 4
  • 38
  • 51
5
votes
1 answer

TeamCity SVN agent-side checkout fails with error svn: E200030: There are unfinished transactions detected in folder

After upgrading to TeamCity 2017.2 my SVN checkout began failing on my build agent with this error: svn: E200030: There are unfinished transactions detected in '[... folder ...]' The agent is running on Windows Server 2012 R2 and TeamCity…
GrahamMc
  • 3,034
  • 2
  • 24
  • 29
5
votes
3 answers

Subversive: svn: E195016: Cannot merge into a working copy with a switched subtree

I have an issue with Eclipse and Subversive. I'm trying to reintegrate a branch of a project into the trunk. These are the operations that I'm following: Switch to the trunk version of the project I have ensured that there were no any pending…
Alessandro C
  • 3,310
  • 9
  • 46
  • 82
5
votes
1 answer

SCM Sensor fails with E170001 when using svn over ssh

Since sonar switched to using SVNKit I can't get the blame analysis to work for working copies using svn+ssh. It fails with: [ERROR] Failed to execute goal org.codehaus.mojo:sonar-maven-plugin:2.5:sonar (default-cli) on project example: Error when…
Jakub Bochenski
  • 3,113
  • 4
  • 33
  • 61
5
votes
6 answers

SVN Error: svn: E200007: Runner for 'org.tmatesoft.svn.core.wc2.SvnMerge'

I am trying to merge branch to trunk using SVNKIT java API. The code for it is as follows: String branchURL = ""; SVNURL branchSVNURL = SVNURL.parseURIDecoded(branchURL);//SVN Branch URL String WC_PATH= "";//This is the…
Vinod
  • 145
  • 1
  • 1
  • 9
5
votes
2 answers

svnkit: how to get working copy revision number?

I am using SVNKit 1.3.2 and trying to obtain working copy revision number. Working copy is checkouted also with SVNKit, but when I'm trying to call clientManager.getLookClient().doGetYoungestRevision(destination); I got FileNotFoundException…
glaz666
  • 8,707
  • 19
  • 56
  • 75
5
votes
1 answer

Jenkins SVN "SSL peer shut down incorrectly" during checkout

I have an issue running maven release plugin through Jenkins using SVN as the SCM. When checking out large projects I get the following error, Ive searched high and low for a resolution but not come up with anything yet, it seems to be an issue…
cowls
  • 24,013
  • 8
  • 48
  • 78
5
votes
2 answers

How to list locally-modified/unversioned files using svnkit?

I'm writing a piece of code that, once executed anywhere inside an SVN working copy, locates the root: File workingDirectory = new File(".").getCanonicalFile(); File wcRoot = SVNWCUtil.getWorkingCopyRoot(workingDirectory, true); gets the repository…
radai
  • 23,949
  • 10
  • 71
  • 115
5
votes
1 answer

missing svnkit dependencies on the classpath using svnant

I am trying to get svnkit working with svnant. Here is my build file:
prolink007
  • 33,872
  • 24
  • 117
  • 185
4
votes
2 answers

Cant use jenkins and Subversion 1.7? Any solution?

I have been having problem with the new update to subversion 1.7 vs the use of Jenkins. Here is the deal, a few people in our company switch to the new subversion 1.7, therefore they cannot revert to the old 1.6 subversion folder structure (unless…
wincrasher
  • 121
  • 1
  • 10
4
votes
3 answers

Mock svn instance for testing svnkit tests

A project I'm working on interacts heavily with Subversion, using svnkit. Are there any examples on running a mock in-memory svn instance, to help facilitate testing etc? Cheers Marty
Marty Pitt
  • 28,822
  • 36
  • 122
  • 195
4
votes
2 answers

How can I get all revisions (not latest) for a special file using SVNkit?

I have used a sample java code to get a file's revision history, but only got one revision. There are many revisions in respository for this file. So how can I get all revisions for this file at once? … long startRevision = -1; long endRevision = 0;…
bombyx
  • 41
  • 2
4
votes
1 answer

Teamcity - last commit author and comment - pass into ant script

How to pass svn last commit author and comment to ant build script, invoked via Teamcity runner?
qwazer
  • 7,174
  • 7
  • 44
  • 69
1
2
3
20 21