在ANT中使用SVN

在ANT中使用SVN

1.到http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=1731&expandFolder=1731&folderID=1926直接下载

 

svnant-1.1.0-RC2.zip
2.准备Build.xml

<!-- svn的classpath-->
 <path id="ant.svn.classpath">
  <fileset dir="${basedir}/lib">
   <include name="*.jar" />
  </fileset>
 </path>

 <taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask">
  <classpath refid="ant.svn.classpath" />
 </taskdef>

3.加入你的下载配置就可以了

你可能感兴趣的:(在ANT中使用SVN)