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
0
votes
0 answers

SVNKIT - Rename file and directory in same commit

I'm using SVNKit with Java to manage my repository via API. I'd like to rename a directory (move) and rename an included file of this particular directory within the same commit. Current repo structure: myRepo myFolder myFile.txt New repo…
stacj
  • 1,103
  • 1
  • 7
  • 20
0
votes
1 answer

eclipse indigo svnkit and proxy https howto

sorry for asking this here, but only you will know :-) I have a svn server and a proxy server between the server and my eclipse. I have a proxy for doing https stuff which works perfectly in firefox. Now I set my eclipse proxy stuff the same way but…
Franz Kafka
  • 10,623
  • 20
  • 93
  • 149
0
votes
1 answer

NoSuchMethodError using svnkit to add a file to my repository

I'm trying to add a file to my repository using svnkit but I get a NoSuchMethodError referencing this line of code: SVNDiffWindow diffWindow = SVNDiffWindowBuilder.createReplacementDiffWindow(deltaLength); Here's the stack…
Kurt
  • 85
  • 1
  • 4
0
votes
0 answers

Eclipse SVN Algorithm missing: No installed provider supports this key: javax.crypto.spec.SecretKeySpec

In Eclipse I sometimes get the following error message in the console when starting an SVN-update or any other SVN-action: update [myLocalSVNpath] -r HEAD --force svn: E175002: Algorithm missing: svn: E175002: OPTIONS request failed on…
S. Doe
  • 685
  • 1
  • 6
  • 25
0
votes
1 answer

SVNKit using ssh throws IOException

I installed a new subversion repository but I am unable to connect to the repository. In the old repository it is working as expected. The new repository thorws an exception: org.eclipse.team.svn.core.connector.SVNConnectorException: svn: E210002:…
Grim
  • 1,938
  • 10
  • 56
  • 123
0
votes
1 answer

Eclipse - subversive custom checkout projectname / folder

i'm using the new release of eclipse (Indigo). I've installed subversive svn connector (with SVNKit 1.3.5). The problem is when checking out from a repository, I cannot select my local folder anymore where to export to. In svn i have my repository…
filsterjisah
  • 121
  • 7
0
votes
1 answer

Creating a SVN repository with a java method

I'm working on a spring boot project and I need to build a method that can create a SVN repository to the svnserver. I found the SVNKit library so I installed the Subclipse from the marketplace in Eclipse but when I do the imports it can't resolve…
Sarah Abouyassine
  • 169
  • 1
  • 2
  • 13
0
votes
0 answers

SVN: Issues while checking out on unix server

Problem Statement: We are in a process of upgrading our SVN from version 1.6.17 to 1.8.19. Now post migration our bulk (whole repository) check-out processes are failing (after running fine for some time) manually as well as through Jenkins.The…
0
votes
1 answer

Sonar Scanner throws EOFException - can not read HTTP status line

When executing a local or jenkins-server based sonar scan, after a while (around 20 minutes of trying to analyze certain file) it throws the following error: 00:45:31.439 INFO: 21/57 files analyzed 00:45:31.688 INFO:…
Mauricio
  • 186
  • 1
  • 11
0
votes
1 answer

Problems using "SVN: Import into repository" of Netbeans

I got this error while I try to use the option of Netbeans "Team+Subversion+Import Into Repository" to create a repository of a Netbeans project into a local repository folder previously created (c://Repositorios/ProjectExample). Can you help me…
0
votes
0 answers

Issue while removing doc from SVN

I am trying to remove doc from SVN repo by using ISVNClientAdapter . i got the exception as "Previous operation has not finished; run 'cleanup' if it was interrupted in subversion plugin java". then I tried to clean up manually. But It was not…
Ram
  • 233
  • 1
  • 17
0
votes
1 answer

Netbeans SVN With Private Key Auth

I have an SVN repository setup on my web host. For two days I've been struggling to get Netbeans to interact with the SVN repository using SSH with private key authentication. I'm using the SVNKit client built into Netbeans. Everything works fine if…
Vektor
  • 31
  • 2
0
votes
2 answers

hudson svnkit SSL

I am using Hudson CI server with a project (or job) that is hosted on Subversion. I am connecting to a Subversion server over SSL. Everything was working fine, and Hudson can update from subversion, build and there was no problem. And just today,…
Ghassan Karwchan
  • 3,355
  • 7
  • 37
  • 65
0
votes
0 answers

SVNKit Export takes much longer in java than shell command 'svn export'

I'm making a program that exports the contents of my repository (or specific directory / files of my repo) into a directory on a specified server. I have the basic function working but the problem is the speed. My average tests for these exports are…
0
votes
1 answer

Check which variables, methods & objects got changed between 2 SVN Revisions

I am trying to find out which variables, methods & objects got changed between 2 revisions of a file. Is it possible to find this out in SVN or using SVNKit by writing a Java Program? Eg: File1.java public class File1 { String name; …
Anamik Adhikary
  • 401
  • 1
  • 8
  • 27