0N/A@echo off
0N/A
0N/Arem CDDL HEADER START
0N/Arem
0N/Arem The contents of this file are subject to the terms of the
0N/Arem Common Development and Distribution License, Version 1.0 only
0N/Arem (the "License"). You may not use this file except in compliance
0N/Arem with the License.
0N/Arem
6983N/Arem You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
6983N/Arem or http://forgerock.org/license/CDDLv1.0.html.
0N/Arem See the License for the specific language governing permissions
0N/Arem and limitations under the License.
0N/Arem
0N/Arem When distributing Covered Code, include this CDDL HEADER in each
6983N/Arem file and include the License file at legal-notices/CDDLv1_0.txt.
6983N/Arem If applicable, add the following below this CDDL HEADER, with the
6983N/Arem fields enclosed by brackets "[]" replaced with your own identifying
0N/Arem information:
0N/Arem Portions Copyright [yyyy] [name of copyright owner]
0N/Arem
0N/Arem CDDL HEADER END
0N/Arem
0N/Arem
5060N/Arem Copyright 2008-2010 Sun Microsystems, Inc.
6560N/Arem Portions Copyright 2013 ForgeRock AS.
0N/A
0N/Asetlocal
0N/A
0N/Aset DIR_HOME=%~dP0
0N/A
0N/Aif "%JAVA_HOME%" == "" goto noJavaHome
0N/Agoto runAnt
0N/A
0N/A:noJavaHome
0N/Aecho Error: JAVA_HOME environment variable is not set.
6560N/Aecho Please set it to a valid Java 6 installation.
0N/Agoto end
0N/A
0N/A
0N/A:runAnt
5058N/Aset CLASSPATH=%DIR_HOME%\ext\junit.jar
0N/A
410N/A"%DIR_HOME%\ext\ant\bin\ant" %*
0N/A
0N/A
0N/A:end
0N/A