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

Committing changed file via SVNKit without local checkout?

I'm using SVNKit to get the contents of a file from our repository. I would like to change that contents within the code and commit the changes back without having to checkout the file first. I searched the web already and only found solutions that…
RobertB
  • 494
  • 1
  • 7
  • 15
4
votes
3 answers

Can not share new project with Subversive SVN in Eclipse Neon

I just downloaded a fresh Eclipse JEE Neon.1a Release (4.6.1) on my Windows 10 machine. I went to the marketplace to get the latest Subversive SVN Team Provider 4.0.2. Trying to install results in the Message: The following solutions are not…
Thomas
  • 620
  • 7
  • 19
4
votes
0 answers

SVNKIT verbose messages on checkout and update etc

I am using SVNKIT version 1.8.11 and would like to output a more verbose message to the console showing what files are being checked out or updated. If have this snippet: System.out.println("Updating... '" + workingCopyDirectory.toString() +…
theINtoy
  • 3,388
  • 2
  • 37
  • 60
4
votes
1 answer

installing SVN Kit connectors proxy authentication error

I have installed the most recent version of subversion svn and then I start up eclipse to download the connector. Pick the most recent SVN Kit (1.8.5) and then I get this error: Problems occurred while performing installation: HTTP Proxy…
user3799636
  • 75
  • 3
  • 8
4
votes
1 answer

SVNKit authentication using SSL and certificate

Newbie here in SVNKit. I am having a hard time trying to figure out how to authenticate in my svn repository. Basically, when I connect to my repository using command line SVN code, it tells me to accepts some certificate and request for my user…
Mark Estrada
  • 9,013
  • 37
  • 119
  • 186
4
votes
1 answer

SVNKit - get modifications to commit

I develop a Java program using the SVNKit library that will be responsible to update or commit a directory under version control. The directory content can be changed by another program which I don't have control, this program can add, delete or…
Valéry Stroeder
  • 613
  • 1
  • 6
  • 15
3
votes
3 answers

Fail to catch Exception

I'm using SVNKit and the only way I found out to test Authentification to the server is by using method testConnection() of class SVNRepository. The method doesn't return a boolean but throws an Exception. public abstract void testConnection() …
Francis P
  • 13,377
  • 3
  • 27
  • 51
3
votes
1 answer

Strange URL when calling doLog() with SVNKit in Java

Here's a strange one. I hope you can help. I'm trying to setup and call doLog() with SVNKit. The setup is a little complex and I'm not sure of some of the parameters. The error is (I think) that some "unknown" characters get inserted into the SVN…
ksnortum
  • 2,809
  • 4
  • 27
  • 36
3
votes
3 answers

SVN Branch info from Java

I'm looking for a way to extract info on all branches within a repository. I'm only interesteted in the name of the branches. I have tried to play around with SVNKit, but haven't been able to figure out, how to get this information.
Mikkel Nielsen
  • 792
  • 2
  • 13
  • 36
3
votes
1 answer

How to get Subversion 1.7 support in Eclipse or IntelliJ IDEA?

In fact there are 3 sub-questions: Is the SVNKit 1.7 snapshot stable enough for basic (update/commit) production usage? Is it possible to manually upgrade SnvKit to 1.7 without recompiling different plugins? Is there any 1.7-compatible alternative…
sorin
  • 161,544
  • 178
  • 535
  • 806
3
votes
1 answer

Using SVNKit, how can I switch a directory to a different branch?

I have a working directory in trunk and would like to switch it to a specified branch. How can I do that? I'd like to have a method public static void switchToBranch(File baseDir, String branchUrl){ } How could I implement that?
Sean Patrick Floyd
  • 292,901
  • 67
  • 465
  • 588
3
votes
2 answers

Setting svn:ignore flag using svnkit

I am using SVNKit in my application. I have a scenario wherein certain files should be ignored when doing svn operations. i.e. I need to set the svn:ignore property for certain patterns. How do I do that using SVNKit?
Shyam Kumar Sundarakumar
  • 5,649
  • 13
  • 42
  • 69
3
votes
2 answers

[eclipse]an error occurred while accessing the repository entry

the eclipse shows these errors. i've areadly download the svn,and svnkit
孟子易
  • 373
  • 1
  • 4
  • 15
3
votes
1 answer

How can I get the "realm" value of a SVN repository?

To my knowledge, when working with SVN repositories there exists a file called "svnserve.conf", which among its properties there exist the "realm" value. If you have a local repository, I guess you can create this file and then set this value. My…
envynoiz
  • 337
  • 3
  • 8
3
votes
1 answer

Slow SVN synchronization in Eclipse with a multi-module Maven project

We have a multi-module Maven project (an EAR project, configured similarly to this one) in SVN, which we try to import in Eclipse (we tried both in Eclips Kepler or Eclipse Luna). What we did is the following: 1. In terminal svn checkout…
V G
  • 18,822
  • 6
  • 51
  • 89
1 2
3
20 21