Questions tagged [svnant]

SvnAnt is a third-party task for Apache Ant that provides an interface to Subversion revision control system.

SvnAnt is a third-party task for Apache Ant that provides an interface to Subversion revision control system.

55 questions
12
votes
2 answers

"Attempted to lock an already-locked dir" using SVNANT

I'm using SVNANT for checking out my project directory on my Windows XP machine. The first time I've used tortoiseSVN for the check out.. as result I obtained an error message relative to the incompatible versions so I had to fix it using a…
Claus
  • 5,662
  • 10
  • 77
  • 118
11
votes
4 answers

svnant does not support svn version 1.7. what to do?

I'm using tortoise svn, and recently I updated to version 1.7. Still, in our build system (ant script) we use svnant lib (to get current revision number, we use it as version number). So can no longer build the project as svnant does not support 1.7…
Eugeny89
  • 3,797
  • 7
  • 51
  • 98
7
votes
2 answers

Checkout svn using gradle

I want to checkout svn using gradle. According to example I wrote this task dwnSnark << { ant.path(id: 'svnant') { ant.pathelement(location: 'antlib/svnClientAdapter.jar') ant.pathelement(location: 'antlib/svnant.jar') …
Stan Kurilin
  • 15,614
  • 21
  • 81
  • 132
5
votes
1 answer

Define svnSetting globally

I would like to define svnSetting globally in my build.xml ant script:
burnersk
  • 3,320
  • 4
  • 33
  • 56
5
votes
1 answer

missing svnkit dependencies on the classpath using svnant

I am trying to get svnkit working with svnant. Here is my build file:
prolink007
  • 33,872
  • 24
  • 117
  • 185
4
votes
2 answers

is it safe to use svnant to update the directory that the build.xml file is in?

I'm maintaining a build system that uses svnant from a one directory to update a large number of projects in another directory. It then moves to one of those projects that's been updated, and does the actual build. Is it safe to do everything from…
Giles
  • 63
  • 3
4
votes
3 answers

SVNAnt Trilead jar missing

I downloaded and installed SVNAnt 1.3.0, Ant 1.8, and Java 1.6. When I try to do a simple checkout via https, I get a java.lang.NoClassDefFoundError: com/trilead/ssh2/InteractiveCallback. I'm not sure why it's using an ssh class since I'm using…
Chris
  • 1,242
  • 3
  • 16
  • 23
3
votes
1 answer

use svnant without a username or password

I have checked out code using command-line SVN. I have an Ant build script that I want to run that will do a commit when its done. I'd like to use svnant, such as
paleozogt
  • 6,393
  • 11
  • 51
  • 94
3
votes
4 answers

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 file. Can I make svnkit pop up a password dialog?…
Thilo
  • 257,207
  • 101
  • 511
  • 656
3
votes
3 answers

Why are my svn ant tasks failing?

I am trying to run a build script and I keep getting errors during a specific svn task. When I try to build the target from the command line, I get an authentication error. When I run the build from flex builder I get an error saying "please get a…
dmarr
  • 491
  • 1
  • 5
  • 15
3
votes
0 answers

svnant status returning wrong results

I am using svnant and using the status task. When i use the tortoisesvn status on the command prompt in windows 7 in the basedir of my repo, i get the following: M Build\build.xml M Build\otherStuff.txt But when i use svnant's status task i…
prolink007
  • 33,872
  • 24
  • 117
  • 185
2
votes
1 answer

How to use -v trigger in svnant log task?

in my Ant build script, I'm using svnant to retrieve SVN logs for specific directories; now I want to see the changed files, too. I tried
codeporn
  • 1,000
  • 1
  • 13
  • 32
2
votes
2 answers

Svnant enable logging

We are using SVN ant task for exporting project from SVN on Linux Previosly it worked fine without any error.…
user12384512
  • 3,362
  • 10
  • 61
  • 97
2
votes
3 answers

CruiseControl modificationSet fails to execute when svn points to a url

In my current CruiseControl setup I am running the following target: I do a simple checkin of a blank text file and subsequently the…
Woot4Moo
  • 23,987
  • 16
  • 94
  • 151
2
votes
1 answer

svnantlib.xml could not be found

I have ant file like..
Charvee Shah
  • 21
  • 1
  • 4
1
2 3 4