<?xml version="1.0" encoding="UTF-8"?>
<project name="SF-BOOTSTRAP" default="bootstrap" xmlns:hlm="http://www.nokia.com/helium">
<property environment="env"/>
<dirname property="sf.bootstrap.dir" file="${ant.file.SF-CONFIG}"/>
<import file="${helium.dir}/helium.ant.xml" />
<!-- target dir -->
<property name="bootstrap.base.dir" value="D:\fbf_project"/> <!-- old name -->
<property name="sf.target.dir" value="${bootstrap.base.dir}"/>
<!-- config -->
<property name="sf.config.repo" value="${sf.config.repository}"/> <!-- old name -->
<property name="sf.config.rev" value="tip"/>
<echo message="config: repo=${sf.config.repo} rev=${sf.config.rev}"/>
<!-- project -->
<property name="sf.project.repo" value="${platform.config.repository}"/> <!-- old name -->
<property name="sf.project.rev" value="tip"/>
<echo message="project: repo=${sf.project.repo} rev=${sf.project.rev}"/>
<target name="bootstrap" depends="init,get-sf-config,get-sf-project" />
<target name="init">
<mkdir dir="${sf.target.dir}" />
<mkdir dir="${sf.target.dir}/build" />
<mkdir dir="${sf.target.dir}/build/config" />
</target>
<target name="clean-env">
<echo message="cleaning up the environment" />
<delete dir="${sf.target.dir}/" />
</target>
<target name="get-sf-config">
<echo message="Getting sf helium configuration from repository ${sf.config.repo}"/>
<hlm:scm verbose="true" scmUrl="scm:hg:${sf.config.repo}">
<hlm:checkout basedir="${sf.target.dir}/sf-config"/>
<hlm:tags basedir="${sf.target.dir}/sf-config" reference="hg.tags.id${refid}"/>
<hlm:update basedir="${sf.target.dir}/sf-config">
<hlm:latestTag pattern="${sf.config.rev}">
<hlm:tagSet refid="hg.tags.id${refid}"/>
</hlm:latestTag>
</hlm:update>
</hlm:scm>
</target>
<target name="get-sf-project">
<echo message="Getting project configuration${sf.project.repo}"/>
<hlm:scm verbose="true" scmUrl="scm:hg:${sf.project.repo}">
<hlm:checkout basedir="${sf.target.dir}/build/config"/>
<hlm:tags basedir="${sf.target.dir}/build/config" reference="hg.tags.id${refid}"/>
<hlm:update basedir="${sf.target.dir}/build/config">
<hlm:latestTag pattern="${sf.project.rev}">
<hlm:tagSet refid="hg.tags.id${refid}"/>
</hlm:latestTag>
</hlm:update>
</hlm:scm>
</target>
</project>