blob: e76094150ad414d8ddfcfe03c8626b9f9f1c5e1f [file] [log] [blame]
<?xml version="1.0"?>
<!--
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<project default="forrest">
<property environment="env" />
<goal name="forrest" description="runs Forrest">
<property name="forrest.home" location="${env.FORREST_HOME}" />
<property name="forrest.ant.home" location="${forrest.home}/tools/ant" />
<java classname="org.apache.tools.ant.Main"
fork="true" failonerror="true" maxmemory="128M">
<classpath>
<fileset dir="${forrest.ant.home}/lib">
<include name="*.jar" />
</fileset>
<pathelement path="${java.home}/../lib/tools.jar" />
</classpath>
<sysproperty key="ant.home" value="${forrest.ant.home}" />
<sysproperty key="forrest.home" value="${forrest.home}" />
<sysproperty key="basedir" value="${basedir}" />
<sysproperty key="java.endorsed.dirs" value="${forrest.home}/lib/endorsed" />
<arg line="-f ${forrest.home}/main/forrest.build.xml" />
</java>
</goal>
</project>