You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.6 KiB
35 lines
1.6 KiB
12 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project name="platform" default="download" basedir="..">
|
||
|
<condition property="download.required">
|
||
|
<and>
|
||
|
<not>
|
||
|
<available file="${harness.dir}/suite.xml"/>
|
||
|
</not>
|
||
|
<isset property="bootstrap.url"/>
|
||
|
<isset property="autoupdate.catalog.url"/>
|
||
|
</and>
|
||
|
</condition>
|
||
|
<target name="download" if="download.required">
|
||
|
<mkdir dir="${harness.dir}"/>
|
||
|
<pathconvert pathsep="|" property="download.clusters">
|
||
|
<mapper type="flatten"/>
|
||
|
<path path="${cluster.path}"/>
|
||
|
</pathconvert>
|
||
|
<property name="disabled.modules" value=""/>
|
||
|
<pathconvert property="module.includes" pathsep="">
|
||
|
<mapper type="glob" from="${basedir}${file.separator}*" to="(?!\Q*\E)"/>
|
||
|
<path>
|
||
|
<filelist files="${disabled.modules}" dir="."/>
|
||
|
</path>
|
||
|
</pathconvert>
|
||
|
<echo message="Downloading clusters ${download.clusters}"/>
|
||
|
<property name="tasks.jar" location="${java.io.tmpdir}/tasks.jar"/>
|
||
|
<get src="${bootstrap.url}" dest="${tasks.jar}" usetimestamp="true" verbose="true"/>
|
||
|
<taskdef name="autoupdate" classname="org.netbeans.nbbuild.AutoUpdate" classpath="${tasks.jar}"/>
|
||
|
<autoupdate installdir="${nbplatform.active.dir}" updatecenter="${autoupdate.catalog.url}">
|
||
|
<modules includes="${module.includes}.*" clusters="${download.clusters}"/>
|
||
|
<modules includes="org[.]netbeans[.]modules[.]apisupport[.]harness" clusters="harness"/>
|
||
|
</autoupdate>
|
||
|
</target>
|
||
|
</project>
|