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
1 answer

How to delete all versions of a file in svn using svnkit

i need to delete all the versions/histroy of a file in svn. I know how to delete a file in svn using following code ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager((String) userKey, …
Dhinakar
  • 4,061
  • 6
  • 36
  • 68
0
votes
1 answer

How to create a folder in svn using svnkit jar java

I need to create a folder in svn using svnkit jar. I tried with the following code String url = Config.svnurl + "/" + qcuser + "/" + "Completedjobs"; try { SVNRepository repository =…
Dhinakar
  • 4,061
  • 6
  • 36
  • 68
0
votes
0 answers

SVNKit authentication error E170001, but only when checking out and only on one computer

I'm completely stumped by an SVNKit (1.8.5) error that I'm running in to. I'm using the following pattern to build up an Authentication Manager: public static SVNRepository getSvnRepository(String userName, String pass, String repoURL) throws…
Doug Stephen
  • 7,181
  • 1
  • 38
  • 46
0
votes
2 answers

eclipse svn client doubles the file path

i hit a strange error today with my eclipse subversion client. i want to update a file but instead i got a message: *** Update svn update "/home/ulkas/Develop/Beautyportal/app/views/partials" -r HEAD --depth infinity U…
ulkas
  • 5,748
  • 5
  • 33
  • 47
0
votes
2 answers

reading subclipse repository path with java

I would like to know for a specific local workspace file, the corresponding svn reposity path. My files are extracted from multiple repository, and placed in different projects of my eclipse workspace. Right clicking on them, selecting properties ->…
Francesco
  • 315
  • 1
  • 3
  • 13
0
votes
1 answer

How do you bring back items in Eclipse SVN View when you did 'Remove from view' them?

I hid some files of a SVN repo by using the 'Remove from view' option. It's stated that they would show again in case of modification. https://i.stack.imgur.com/od4sA.jpg But now, Eclipse shows conflicts in my project, with absolutely 0 files with…
Dillinur
  • 145
  • 5
0
votes
1 answer

An internal error occurred during: "svn update". 3

I've merged one branch to another branch and received this error an internal error occurred during: "svn merge". 3 After this operation, I am not able to perform any of the svn actions like update, cleanup etc. All these actions leading to the same…
0
votes
1 answer

Visualisation of trunk, branches, and tags of an SVN project

Is there a tool or plugin for Eclipse that I can use for visualising the different SVN versions of my Java project (trunk, branches, and tags) along with the respective dates and names. I am looking for something like this:
mounaim
  • 1,132
  • 7
  • 29
  • 56
0
votes
1 answer

How to get added file with SVNKit

I have a Working Copy and added new files FOUR.txt and more/FIVE.txt using svn add command. svn add FOUR.txt svn add more/FIVE.txt On executing svn status on working copy I get following output A FOUR.txt A more/FIVE.txt Now I want to get same…
Pokuri
  • 3,072
  • 8
  • 31
  • 55
0
votes
1 answer

Checkout failed with svnkit 1.8 embedded : no checksum is recorded for this file

Since the beginning of the week I am dealing with a strange error. I have an application using svnkit 1.8 which failed to checkout a project from svn. The following error is raised : svn: E155017: Cant install "a file" from pristine store, because…
Ekans
  • 997
  • 1
  • 8
  • 16
0
votes
2 answers

Eclipse Showing Infer Generic Type Arguments - want to remove this warning without supressing it

I am trying to get all log from svn repository using SVNKit. It is working fine, but saw an infer generic type argument warning message. I have tried to cast the line repository.log(new String[]{""}, null, START_REVISION, HEAD_REVISION, true,…
anirban
  • 674
  • 1
  • 7
  • 21
0
votes
1 answer

svn java api "Unable to open an ra_local session to URL"

I need to automatically checkout all svn revisions to do some repo mining. I wrote a java code using svnkit (org.tmatesoft.svn_1.8.5.standalone_2) The code works nicely when i access the url of the repository but when i do checkout using file:///…
user3610899
  • 121
  • 2
  • 7
0
votes
2 answers

SVNKit 1.8.x in Maven

Is SVNKit 1.8.x available in a public Maven Repository? I have a Maven plug-in that has a dependency using SVNKit 1.7.8 and I have now switched my SVN Clients to Subversion 1.8, so my plug-in doesn't work any more. I can't find version 1.8.x of…
sedge
  • 385
  • 1
  • 4
  • 15
0
votes
0 answers

Committing file if only modified using svnkit

I am using svnkit in java for doing anykind of svn related stuff programatically. I want to commit file only when it is changed. I am using this code snippet: SVNDeltaGenerator deltaGenerator = new SVNDeltaGenerator(); String checksum =…
Amandeep Singh
  • 3,754
  • 8
  • 51
  • 72
0
votes
1 answer

SVNKit not installing using eclipse

Requirement: The users of a Java program I want to develop should be able to version files using Subversion through my Java code System details:windows XP 32 bit , Eclipse Juno Problem:not able to install svnkit plugin to eclipse juno I did the…
user2176576
  • 734
  • 3
  • 14
  • 39