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

Get log with SVNKit from specific directory from repo

I need to get log from SVNRepository from specific folder. For example - I have SVNURL url = SVNURL.parseURIEncoded("https://subversion.assembla.com/svn/jscrum"); SVNRepository svnRepository = DAVRepositoryFactory.create(url); and I'm getting log…
Krystian
  • 2,221
  • 1
  • 26
  • 41
0
votes
0 answers

SVN commit issue when using SVNKit Libraries in Java

Couldn't commit a modified file to SVN repository using SVNKit libraries in Java. No stack Trace information is available for me to debug which is disappointing. The file is modified using a Java program and I would have to commit the modified file…
DigitalDyn
  • 165
  • 2
  • 3
  • 12
0
votes
1 answer

linux slave cannot checkout source , svn: E175002: Received fatal alert: bad_record_mac

environment is: jenkins 1.5.20 on RHEL 6 jenkins SSH Slaves plugin 1.2 SSH Credentials plugin 1.3 i have a user on both the master host and slave host that can successfully ssh between the two hosts and on the master there is no issue checking out…
user1800734
  • 223
  • 1
  • 3
  • 7
0
votes
0 answers

Error while Using SVNKit in Linux

I am using SVNKit... and its working fine in my Windows Local. But running it in Linux throws the following exception. Exception in thread "main" java.lang.NullPointerException at svn_log.svnLog.Build(svnLog.java:156) at…
Debajyoti Das
  • 2,038
  • 4
  • 34
  • 66
0
votes
1 answer

SVNKit library used for internal project?

Can SVNKit library be used for an application that is going to be used and redistributed only inside the company I work for? Does it count as a commercial use? http://svnkit.com/licensing.html Thanks.
0
votes
0 answers

NullPointerException when tagging in subversion from ant

I have been using the following macro (as suggested here The svn client 'svnkit' is not available) to let Jenkins create a tag from a branch in a subversion repository and it has been working fine.
jkc
  • 142
  • 1
  • 2
  • 13
0
votes
1 answer

How to release svnkit resources after log

I use svnkit in java application to get svn revisions log, but after finish the process on the visualVm some svnkit resource and thread still exist and live . ex. org.tmatesoft.svn.core.internal.util.SVNHashMap$KeyIterator,…
Khaled Lela
  • 7,831
  • 6
  • 45
  • 73
0
votes
1 answer

how to download entire project from SVN repository using SVNKit from java

I am able to read a contents from SVN repository file by file using SVN kit. But my requirement is to download entire project from SVN repository to my local directory Using SVN kit java code for source code analysis. So How can I achieve this. I…
user2215139
  • 1,805
  • 2
  • 18
  • 24
0
votes
1 answer

Calling SVNKit from Clojure

I'm trying to follow this tutorial for using svnkit, but doing it from clojure. My code is: (defn svntest [ url ] (. DAVRepositoryFactory setup) (try (let [ repository (. SVNRepositoryFactory create (. SVNURL parseURIEncoded url))] …
Xodarap
  • 11,581
  • 11
  • 56
  • 94
0
votes
1 answer

Can multiple users commit to SVN simultaneously? Is it thread safe?

The application must be desgined in such a way that it must support multiple users while commiting into SVN Repositiry. I'm done with the application and the related stuff, however, i'm stuck with this multi-user thing. How i can achieve this? I saw…
Vinayak Pahalwan
  • 2,915
  • 4
  • 26
  • 34
0
votes
1 answer

"Path not found" error when trying to perform a checkout using SVNKit

I was getting to perform the checkout correctly before I merged branch and trunk. After that procedure (merge of folder trunk/Fontes and branches/1.1.0/Fontes, having trunk/Fontes as working copy), I'm having problems to checkout a project or update…
Paulo
  • 267
  • 4
  • 14
0
votes
1 answer

Issue with SVNAnt commit

I have an ant build.xml file with the following setup:
pclem12
  • 449
  • 10
  • 23
0
votes
1 answer

Troubles with storing username/password

The problem is that Subclipse 1.8.18 (using SVNKit 1.7.8) with Eclipse 4.3 (from M2 to current M6) does not remember username and password for SVN server after restarting Eclipse. First I thought that it caused by bug I reported here…
dds
  • 2,335
  • 1
  • 31
  • 45
0
votes
2 answers

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

How do you use svnkit to enumerate svn repositories in a root directory?
Jason S
  • 184,598
  • 164
  • 608
  • 970
0
votes
2 answers

Compare Local checkout version with SVN current version

It is possible to check the locally checkout revision number with repository current version. i.e I checkout a file from repository and made changes locally, before i commit other user checkout the same file and made changes and committed the file.…
Java Learner
  • 87
  • 1
  • 2
  • 8