Tagged Questions

9
votes
1answer
2k views

SVNkit cannot create SVNRepoitory

I am trying to run a diff on two svn urls using SVNkit. The problem is that I get the error when diff.doDiff is called. org.tmatesoft.svn.core.SVNException: svn: Unable to create SVNRepository ...
4
votes
1answer
252 views

Java Subversion libraries

I've been researching Java APIs for Subversion (SVN). It seems there are 3 available: JavaHL - part of the SVN project. Provides a relatively low-level API svnClientAdapter - part of the Subclipse ...
2
votes
1answer
26 views

Query in SVNKit

I am using SVNKit to access a repository that contains binary files. I need to go to specific directories in the repository and retrieve a list of files from them. Then I do this:(sloppy code) ...
2
votes
1answer
39 views

How can I check out file with the commit time

I wrote a java program that using the SVNKit. The timestamp of checked out file is system time ,instead of the commit time 。How can I check out file with the commit time.
2
votes
1answer
241 views

Setting up SVNKit when multithreading

I'm trying to connect to many SVN repositories in parallel, using different threads, with SVNKit. Looking at some code examples online, it looks like before using SVNKit I have to initialize it using ...
2
votes
1answer
429 views

SVNKit: How to get the repository url from a local path?

I would like to implement a method that can get the svn revision number from the path where a SVN repository has been checked out. The method declaration would look something like this: long ...
2
votes
4answers
2k views

Why am I getting handshake_failure with Java SSL cert?

I'm trying to use Hudson (which uses SVNKit) to access a Subversion repository that requires a client certificate to access it. I can access the same repository using the same client certificate via ...
1
vote
1answer
54 views

SVN server implementation in Java

Which of libraries provide SVN server functionality(do only "svn commit")? Thanks.
1
vote
1answer
89 views

Get all revision log from a Branch in SVN using SVNKIT

I am trying to fetch all activity that has been performed on a branch in my Java code using SVN Kit. SVNRepository repository = SVNRepositoryFactory.create(svnURL); ISVNAuthenticationManager ...
1
vote
0answers
46 views

version to folder using java programming

In my Java web application project,I need to add versioning to one of my Images folder,if user done any modification to image and updated then it should maintain new version on that recently updated ...
1
vote
1answer
165 views

Downloading all files in each resivision from a SVN repo using SVNkit - Please HELP

Here is my problem: I am working on a project as part of my diploma thesis. I am trying to connect to different Open Source project repositories and get info from source files. Actually we analyze ...
1
vote
1answer
53 views

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? ...
1
vote
1answer
106 views

Connecting to Subversion repository with SVNKit using HTTPS

How to connect to Subversion repository with SVNKit using HTTPS? I use the approach that worked earlier with http connection: DAVRepositoryFactory.setup(); repository = ...
1
vote
1answer
186 views

java svnkit: read content of file directly from repository, without exporting it

I am using svnkit in Java to interact with a svn repository. I would like to read the content of a file that is stored in svn without checking it out from the repository or exporting it. Is that ...
1
vote
1answer
102 views

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){ ...
1
vote
1answer
864 views

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 ...
1
vote
2answers
193 views

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

SVNKIT checkout exception: org.tigris.subversion.javahl.ClientException: svn: Invalid report for top level of working copy

public String execute() throws Exception,SVNException { CVEHistory cve = new CVEHistory(); System.out.println("in svn history"); DAVRepositoryFactory.setup(); String[] ...
0
votes
1answer
28 views

Error : org.tmatesoft.svn.core.SVNException: svn: 'D:\Code\MSCVE\ADVISORIES' is not under version control

SVNURL url1 = SVNURL.parseURIEncoded("file:///E:/SVN/IDS/MSCVE") System.out.println("*************"); String dstPath1="D:/code/MSCVE"; //String dstPath3="D:/code/MSCVE"; ...
0
votes
0answers
45 views

Throwing an error at Collection logEntries = repository.log(new String[] { “ ” }, null,startRevision, endRevision, true, true);

public class History { public static void main(String[] args) { DAVRepositoryFactory.setup(); SVNRepository repository = null; try { repository = ...
0
votes
1answer
80 views

Can't get a Maven repo working with Nexus Server

I'm a bit new to Maven. I thought I was getting a pretty good handle on it. I guess not. I want to set up a dependency on SVNKit 1.7.0-alpha1. According to their website, They have a releases repo ...
0
votes
1answer
38 views

How to create a new text file in SVN using SVNKIT..?

As I am new to this SVNKIT . Please any one Can provide me the code for creating an new text file SVN repository . Eg: file:///E:/SVN/IDS/MSCVE I want to add a new text file in the MSCVE folder. ...
0
votes
1answer
36 views

svn kit integration in project [closed]

Possible Duplicate: version to folder using java programming In my Java web application project,I need to add versioning to one of my Images folder,if user done any modification to image ...
0
votes
1answer
133 views

SVNKit - Check if Directory exists

So, I've created a project TEST under an SVN repository and I want to know if this project directory exists with SVNKit library. Protocol is http. I tried for example... private String urlSviluppo ...
0
votes
1answer
96 views

change svn file property on the fly with svnkit

I need to change the value of a versioned custom property of a file in an svn repository on the fly. I do not want to alter any content, just change the value of the property of the already existing ...
0
votes
0answers
50 views

Get contents of file for a specific revision (SVNKit)

I have a very simple question. I have one file in a SVN repository and I want: 1) find out what is the first revision the file was created 2) what is the last revision of the file 3) to get deltas ...
0
votes
0answers
259 views

Add SVNKit libraries in a NetBeans project

I need to use SVNKit in a NetBeans project. I downloaded the stand-alone binaries but I don't know which JAR file I should add. The SVNKit wiki say's that I need to build the directory with Ant, but ...
0
votes
1answer
60 views

change svn directory property on the fly with svnkit

I need to change the value of a versioned custom property of a svn directory on the fly. I do not want to alter any content, just change the value of the property of the already existing directory. I ...
0
votes
1answer
91 views

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 = ...
0
votes
0answers
153 views

Unable to open an ra_local session to URL

I try to connect to local repository using SVNKit. I have initialized factory using FSRepositoryFactory.setup(); nevetheless I am getting org.tmatesoft.svn.core.SVNException: svn: Unable to open an ...
0
votes
1answer
112 views

SVNKIT doExport method - what is pegRevision?

When using the doExport() method of svnkit i dont know the meaning of one parameter. The javadocs dont help me either, i still dont get it you can find it here: ...
0
votes
1answer
244 views

Get previous modified revision of a file using svnkit

I am using SVN kit to gather some metrics from SVN repositories. I am stuck with this simple problem and am unable to get through it. I have an SVNRepository object that give me paths of all files in ...
0
votes
4answers
419 views

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 ...
0
votes
1answer
144 views

Incorrect date extracted from SVN using SVNKit

I am using SVNKit to retrieve logs from a SVN server. I am using SVNKit version 1.3.2. Everything is working fine and well except for some bizarre problem that I have been seeing lately. The commit ...
0
votes
1answer
245 views

change SVN directory permissions using SVNKit

I'm using SVNKit to programatically interact with an SVN server. At some point I need to prevent any further changes to a repository directory. My intial idea was to do this using a lock, but then I ...
0
votes
1answer
356 views

Problems getting SvnKit to work on 64 bit Windows 7

I'm having a problem getting SvnKit working on 64 bit Windows 7. I open a shell and type jsvn and i get... The system cannot find the path specified. It doesn't say what path. Its not the launcher ...
0
votes
1answer
634 views

Unable to commit a directory tree with SVNKit

I've a directory containing files from a legacy build system. i want to recreate the timeline of this build system in a SVN repository. For that, I have to take each build, extract all its files, put ...
0
votes
3answers
315 views

SVNKit: Commit files that were manually deleted from filesystem( Work Copy)

I can not solve the problem with collecting CommitItem(changes that commit), or more accurately, I have no porblem with the changed and added files BUT files that I manually deleted from the file ...
0
votes
1answer
322 views

SVNKit: Retrieve files for specific revision

I'm writing a tool which will push changes to database after commit to svn. The question is how to retrieve dirs for particular revision. SVNClientImpl clientImpl = SVNClientImpl.newInstance(); ...
0
votes
3answers
406 views

SVNException unable to rename file when using SVNKit in a ikvmc-ed library in C#

I used ikvmc to compile svnkit to a C# (dll) library and linked it as a reference to my project. I tried a proof of concept code to checkout: public void ...
0
votes
2answers
549 views

svnkit: how to enumerate svn repositories in a root directory?

How do you use svnkit to enumerate svn repositories in a root directory?
-3
votes
1answer
31 views

Using SVN kit Not able to add the file to repository and the below code is throwing java.lang.NullPointerException

I am not able to add any file in the repository using editor, it is throwing a java.lang.NullPointerException exception at line editor.addFile(textfile, null, -1); try { url = ...
-4
votes
1answer
61 views

what is causing this error? java.lang.NoSuchMethodError: org.tmatesoft.svn.core.wc.SVNWCUtil.createDefaultOptions [closed]

java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) Caused by: java.lang.NoSuchMethodError: ...