build.xml revision 4fe4e4f798a84a46e567f64ceadd3648eb0582d4
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<?xml version="1.0" encoding="UTF-8"?>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<!--
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
ed22c7109fc5dd9e1b7a5d0333bdc7ad2718e2abYuri Pankov
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Copyright (c) 2008 Sun Microsystems Inc. All Rights Reserved
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe The contents of this file are subject to the terms
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe of the Common Development and Distribution License
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe (the License). You may not use this file except in
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe compliance with the License.
ed22c7109fc5dd9e1b7a5d0333bdc7ad2718e2abYuri Pankov
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe You can obtain a copy of the License at
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe https://opensso.dev.java.net/public/CDDLv1.0.html or
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe opensso/legal/CDDLv1.0.txt
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe See the License for the specific language governing
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe permission and limitations under the License.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe When distributing Covered Code, include this CDDL
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Header Notice in each file and include the License file
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe at opensso/legal/CDDLv1.0.txt.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe If applicable, add the following below the CDDL Header,
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe with the fields enclosed by brackets [] replaced by
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe your own identifying information:
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe "Portions Copyrighted [year] [name of copyright owner]"
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe $Id: build.xml,v 1.2 2008/06/25 05:48:53 qcheng Exp $
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe-->
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<project name="SiteminderIntegration" default="all" basedir=".">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <description>Builds, tests, and runs the project stockclient.</description>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <path id="build.class.path">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <pathelement location="build/classes"/>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <fileset dir="lib">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <include name="**/*.jar"/>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </fileset>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </path>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <target name="-pre-compile">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <mkdir dir="build/classes"/>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </target>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <target name="build" depends="-pre-compile">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <javac fork="true" destdir="build/classes" srcdir="source">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <classpath refid="build.class.path" />
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </javac>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </target>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <target name ="jar" depends="build">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <mkdir dir="dist"/>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <jar destfile="dist/fam_oam_integration.jar">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <zipfileset dir="build/classes" />
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </jar>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </target>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <target name="all">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <antcall target="build" />
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <antcall target="jar" />
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </target>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <target name="clean">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <delete dir="build"/>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <delete dir="dist"/>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </target>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe</project>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe