1 <project name="to be included into customTargets.xml">
\r
3 <import file="fetchSvnAll.xml"/>
\r
5 <path id="project.classpath">
\r
6 <pathelement location="${buildHome}/build-files/svn/svnant.jar"/>
\r
7 <pathelement location="${buildHome}/build-files/svn/svnClientAdapter.jar"/>
\r
10 <target name="fetchSubversion" if="is.svn.fetch">
\r
11 <taskdef resource="svntask.properties" classpathref="project.classpath"/>
\r
12 <property name="fetchTag" value="HEAD"/>
\r
13 <antcall target="fetch.svn.all"/>
\r
16 <target name="svn.co">
\r
17 <property name="target.dir" value="${element.id}"/>
\r
18 <svn javahl="false" username="${pluginbuilder.svn.user}" password="${pluginbuilder.svn.password}">
\r
19 <checkout revision="${fetchTag}" url="${url}/${project.name}" destPath="${buildDirectory}/${target}/${target.dir}" />
\r