Tagged Questions
The svnant tag has no wiki summary.
4
votes
2answers
132 views
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 ...
4
votes
2answers
686 views
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 ...
2
votes
0answers
32 views
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')
...
2
votes
4answers
633 views
ant svntask retrieving revision message
I'm using ant with svntask to update a repository before I build an application. At the end of the build, an email goes out with the results of the build. It would be very helpful to include the svn ...
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
86 views
Checkout project from Google code using Ant error
<typedef resource="org/tigris/subversion/svnant/svnantlib.xml" />
...
<target name="main" depends="clean">
<svn javahl='false' >
<checkout ...
1
vote
0answers
322 views
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
<svn username="${svn.username}" ...
1
vote
1answer
457 views
Use ANT/SVNANT to delete files from SVN working copy if they don't exist in another folder
Scenario:
SVN Repo #1 with application code base
SVN Repo #2 with previously compiled milestones
I need an ANT build script which can do the following:
Export the code base from SVN repo #1 ...
1
vote
1answer
555 views
“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 ...
1
vote
3answers
1k views
CruiseControl modificationSet fails to execute when svn points to a url
In my current CruiseControl setup I am running the following target:
<modificationset quietperiod="30">
<svn RepositoryLocation="http://my/url/repo/trunk" />
...
1
vote
1answer
1k views
svnant - parent dir in server is not a working copy
I want to checkout project, get the revision number, build jar with that number in menifest, on the server with a web interface. There are some other minor steps in the whole process, but that's the ...
1
vote
1answer
2k views
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
<svn svnkit="false" ...
1
vote
1answer
1k views
How get a list of files under a subversion-url in ant?
I want with ant access a subversion-repository and get a list of files available under a specific svn-url like https://svn.myhost.de/repository/path/into/repo. I want to list all items, subdirectories ...
0
votes
1answer
475 views
Define svnSetting globally
I would like to define svnSetting globally in my build.xml ant script:
<project name="helloworld" basedir="." default="helloworld">
<svnSetting
javahl="false"
...
0
votes
0answers
69 views
SVN ant task to merge
I have to use svn ant task to merge development branch to the trunk. Is there as simple svn ant command to do that?
0
votes
0answers
115 views
Flash Builder 4 - problem using svnant in standalone version
I have been using svnant for sometime until recently IT formatted my laptop. I now have a problem with svnant. The error is:
Could not load definitions from resource ...
0
votes
1answer
208 views
SVN and Ant. How to obtain fileset of modified, non-versioned or deleted files?
Ant fileset and selectors is power feature.
There are any selector for work with files and dirs under SVN?
Something like this
<!-- All modified text files in current working dir -->
...
0
votes
1answer
178 views
svnant command to copy files from an ssh repository to a sever?
Hi is there anybody who knows how to write the copy command for svn-ant or just svn to copy files from an ssh repository(svn+ssh://username@10.10.10.10/media/repository/files) to a server folder ...
0
votes
2answers
702 views
Can't get svnant tasks to work with ant 1.7.1, svnant 1.2.1, java 1.6.0_17, and svnkit on windows xp
I'm trying to use svnkit to access subversion from the svnant ant tasks with the following result:
BUILD FAILED
/path/to/build.xml:49: Cannot find javahl, svnkit nor command line svn client
at ...
0
votes
2answers
143 views
change svn used by svnant
I've installed a newer version of svn on my system in ~my/home/bin and put the path to it.
So now from command line a newer version of svn is used instead of the old one, located in /usr/bin/.
...
0
votes
3answers
3k views
SVN-ANT Error - “is not a working copy”
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 ...
0
votes
4answers
3k views
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 ...
0
votes
1answer
463 views
SVNAnt Through Proxy
I just installed Ant for the first time today and have been playing with it. I am behind a proxy and I feel this is the source of my problems. I have managed to successfully create an ant build file ...