I am new to Ant and I want to do an SVN update operation. I add jar files to the ant / lib folder, also add the typedef property in the build.xml file.
<typedef resource="org/tigris/subversion/svnant/svnantlib.xml" classpath="ant/lib/svnant.jar;ant/lib/svnClientAdapter.jar;ant/lib/svnkit.jar;ant/lib/svnjavahl.jar" />
But now I need an example code to create an update from the repository in one folder (let's say the folder name is a test) I am browsing the Internet, but several examples are accompanied by this svn Ant call.
I tried something like this
<target name="svn-update">
<svn username="test" password="*****">
<update revision="HEAD" dir="com.project.blackbox.eclipse" />
</svn>
</target>
tinti source
share