This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.xml
39 lines (31 loc) · 1.48 KB
/
extension.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="all" name="svn">
<property file="../local.build.properties"/>
<property file="../build.properties"/>
<property name="extension.name" value="${ant.project.name}"/>
<property name="existhome.dir" location="../.."/>
<property name="extension.include" value="${include.feature.svn}"/>
<!-- import common.xml here -->
<import file="${existhome.dir}/build/scripts/extensions-common.xml"/>
<target name="download-3rd-party" description="Download thirdparty jar files">
<echo>Retrieving 3rd party jar files '${extension.name}'</echo>
<taskdef name="fetch" classname="nl.ow.dilemma.ant.fetch.FetchTask" classpathref="classpath.core"/>
<fetch classpathref="classpath.core" dest="${existhome.dir}/${lib.user}"
url="http://www.svnkit.com/org.tmatesoft.svn_1.8.8.standalone.zip" classname="org.tmatesoft.svn.cli.SVN">
<patternset>
<include name="**/svnkit-1.8.8.jar"/>
<include name="**/svnkit-cli-1.8.8.jar"/>
<include name="**/sequence-library-*.jar"/>
</patternset>
</fetch>
</target>
<!-- do not clean up this jars because of conflict on windows with ant -->
<!--
<target name="clean-3rd-party" description="Remove thirdparty jar files" >
<echo>Removing 3rd party jar files '${extension.name}'</echo>
<delete includeemptydirs="true">
<fileset dir="${existhome.dir}/${lib.user}" includes="svnkit*.jar"/>
</delete>
</target>
-->
</project>