Tagged Questions

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

learn more… | top users | synonyms

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 ...
8
votes
2answers
12k views

Subclipse with SVNKit Adapter

I have two questions and some context. I am installing Subclipse 1.4.x into Eclipse Ganymede and I'm thinking that I should use the SVNKit Adapter. I'm using Ubuntu 8.04 which comes with Subversion ...
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
23 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
16 views

How to get the Log / History give a specific file list using SVNKit?

Given a file list for example A.java, B.java, C.java, D.java, I want to get the History / Log of the file that are present in the file list. For example Revision 0 Added file A.java Added file ...
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
135 views

How to debug Subclipse / SvnKit credentials issue?

I'm trying to get svnkit to work with subclipse. I'm on Windows 7, 64 bit, with Eclipse Indigo, JDK 1.6. I installed subclipse 1.6.18 and svnkit 1.3.5.7406. I add an svn repository location: ...
2
votes
1answer
239 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
3answers
169 views

Subversion for version control

I am working on an application whose primary purpose would be to provide source control management. My idea is to use to SVNKit for file check-out and check-in. However, while working with SVNKit, I ...
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 ...
2
votes
2answers
602 views

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 ...
2
votes
4answers
6k views

How do I make svnant/svnkit prompt for a username/password

I have an Ant script that needs to checkout a directory from Subversion. This works using svnant/svnkit. However, Subversion access is authenticated, and I do not want to store my user password in a ...
1
vote
1answer
52 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
1answer
737 views

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 ...
1
vote
0answers
45 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
154 views

Howto install latest SVNKit snapshot in Zend Studio 8 with jar file?

In order to get support for Subversion 1.7 format files, I'm supposed to install an snapshot version of SVNKit 1.7 as says here. So I downloaded the jar file from here but I don't know how to install ...
1
vote
1answer
162 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
185 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
3k views

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 ...
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
418 views

Checking Out Directory / File with SVNKit

I can't see on the wiki where checking out is documented. Ideally, I would like to check out a file "example/folder/file.xml", if not just the folder... and then when the application closes down or ...
1
vote
0answers
144 views

SVNkit not working on UNIX

I am trying to checkout files on Unix using SVNkit. The same code was working on Windows box. Am I missing something here? svn: handshake_failure: remotely generated; fatal svn: OPTIONS request ...
1
vote
2answers
153 views

svnkit: Problem getting entry name

I'm trying to create a SVN Eclipese EFS plugin and have problems when getting the names of entries. When I make a call to: SVNRepository `//Fetches the contents of a directory into the provided ...
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
1
vote
1answer
2k views

Use Subversion connector SVNKit 1.2.1 from trunk in Eclipse

I want to test a feature coming with SVNKit 1.2.1, which is not yet available on the update sites of the Eclipse or the Polarion project. I got a checkout as described under "Latest Development ...
1
vote
6answers
5k views

Committing a Directory to Subversion

Kind of a newbie question, but I am having problems using SNVKit. I am using SVNKit in an application to commit changes to files. I have it successfully adding the files and folders to the working ...
0
votes
1answer
6 views

How to get the revision of a specific file using SVNKit?

Given a file, how do i get its revision in the repository without checking it out? Is there a way or function in SVNKit that allow me to do so? For example I hava a file named foo.java, how would i ...
0
votes
1answer
83 views

Subclipse SVNKit installs, but doesn't run in Eclipse

I've successfully installed Subclipse through Eclipse's Help > Install New Software.... When I go to Java perspective > Package Explorer view > Team > Share Project and select SVN, I get: ...
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
27 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
44 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
0answers
52 views

update Subversion last modified time with SVNKit

Before I go down the long road of experimenting and losing a day of development... does anyone know off-hand if I can specify the last modified date of a Subversion file when I create it using SVNKit? ...
0
votes
1answer
79 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
132 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
258 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
671 views

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 ...
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
109 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
143 views

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 ...

1 2