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 versi
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:
Check out svnant into a local directory (username guest, empty password):
svn co http://subclipse.tigris.org/svn/subclipse/trunk/svnant/ svnant --username=guest
Build:
ant makeDistrib
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.