Eugeny89
Eugeny89

Reputation: 3731

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 version of svn. How can I solve this problem?

Thank you in advance!

Upvotes: 11

Views: 14940

Answers (4)

Christopher Roscoe
Christopher Roscoe

Reputation: 777

The latest version of svnkit (pure Java lib) is compatible with Subversion 1.7. http://svnkit.com/download.php

You can download the standalone version and copy the libs from folder lib to your classpath. You need at least the last 5 jars.

<path id="path.svnant">
    <pathelement location="svnant/svnant.jar" />
    <pathelement location="svnant/svnClientAdapter.jar" />
    <pathelement location="svnant/ganymed.jar" />

    <pathelement location="svnant/svnkit-1.7.8.jar" />
    <pathelement location="svnant/svnkit-javahl16-1.7.8.jar" />
    <pathelement location="svnant/sqljet-1.1.6.jar" />
    <pathelement location="svnant/antlr-runtime-3.4.jar" />
    <pathelement location="svnant/sequence-library-1.0.2.jar" />
</path>

Upvotes: 9

Ian Brockbank
Ian Brockbank

Reputation: 507

svnant has now been updated in the source to support SVN 1.7, but you'll need to build it yourself.

In a command prompt:

  1. Check out svnant into a local directory (username guest, empty password):

    svn co http://subclipse.tigris.org/svn/subclipse/trunk/svnant/ svnant --username=guest

  2. CD into the root svnant directory
  3. Build:

    ant makeDistrib

  4. Copy the built files from build\distrib\lib into your ANT lib folder (probably C:\Program Files\Ant\lib or C:\Program Files (x86)\Ant\lib)

The inline properties such as svnkit="false" are now deprecated, so you will need to update to use svnSetting as described in the answer above.

Hope this helps.

Upvotes: 6

opticyclic
opticyclic

Reputation: 8116

An alternative to svnant is svntask

I have just recently forked it from GoogleCode and updated it to work with svn 1.7.

It doesn't contain as many commands as svnant but contains the basics such as getting the version number.

Upvotes: 3

oers
oers

Reputation: 18704

You can use the command line version of svn.

  1. Download and Install it on your machine
  2. Include it in your Path (so that you can execute svn from the command line)
  3. Change the svnsettings to

    <svnSetting
        svnkit="false"
        javahl="false"
        id="svn.settings"/>
    

svnant will then use the command line version to do all svn things.

Upvotes: 13

Related Questions