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 object for 'http://svn.codehaus.org/jruby/trunk/jruby/src/org/jruby/Finalizable.java'
at org.tmatesoft.svn.core.internal.wc.SVNErrorManager....
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 copy, but I am having problems committing it to the respository.
The command I am trying to run is 'commit -m "Test Add" /svnroot/project1/...
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 file.
Can I make svnkit pop up a password dialog?
Or even better, make it use the same credential caching that subversive/svnkit inside of...
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 Version" on svnkit.com/download.php, successfully built it with ant and successfully installed it with the Eclipses software manager.
Now I don...
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?
...
Hi, 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 1.4.x and since the JavaHL Adapter requires Subversion 1.5.x using a pure Java solution like SVNKit seems like a good solution.
Which p...
Hi all
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
...
How do you use svnkit to enumerate svn repositories in a root directory?
...
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 Eclipse (also using SVNKit).
When Hudson tries to check out the repository, it fails with:
org.tmatesoft.svn.core.SVNException: svn: Recei...
I read related question before submitting this question but wasn't able to find the exact question that has the same issue as mine.
I am trying to setup some automation on a windows box. I have ant target to do update and I have used eclipse as my java development editor. Windows box have svn client (TortoiseSVN) installed and I used ...
Is there a way to get Netbeans 6.7/8 to work with SVNkit?
I'm looking for a plugin to replace the built-in SVN Netbeans plugin or a similiar solution. Right now, my workaround is to make copies of all of the jsvn commands and rename the copies to the svn equivalent. It works, but its a headache.
Edit: As to why I want to do this, it...
Hi,
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 checkOut(Dictionary<string,List<object>> tokens) {
string url_str = (string) tokens["checkout"][0];
setupLibrary();
java.io.File path = new ja...
Hi!
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
clientManager.getLookClient().doGetYoungestRevision(destination);
I got FileNotFoundException telling me that 'format' file is not found under destination path, ex /path/to/working/...
Hello guys.
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();
clientImpl.username(name);
clientImpl.password(password);
DirEntry[] dirs = clientImpl.list(url, Revision.getInstance(revision), tr...
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 collection object and returns the directory entry itself.
SVNDirEntry getDir(String path, long revision, boolean includeCommitMessages, Collec...
Hi,
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 realised it does not have the speed I was looking for.
For instance, whenever developers create a ChangeRequest, which can encompass ch...
Hi Everyone,
I am having trouble copying file using SVNKit. After copying the files from source to destination files end up one folder above the intended folder.
For ex:
When copying files from "https://example.com/svn/repos/trunk/project/src/ex.txt" to
"https://example.com/svn/repos/branches/PackageN/project/src", files end up in "pro...
Hi all,
I am getting InvocationTargetException while using any SVNKit operation thorugh Eclipse framework. Although SVNKit's methods are working fine with the main method invocaiton. Moreover, I am running SVNkit operation using Eclipse's Job API so I dont sense any reason with updating UI thread.
Friends, please help, I have tried ever...
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 system is not seen in CommitItem list ... And those changes can not commit to the SVN server.
If I delete a file using the API, then the probl...
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 getRevisionNumber(String localPath) { ... }
I'm trying to use SVNKit for this, but it seems to require an SVN URL to start with. Is there any way...