Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 77693 invoked by uid 500); 27 Apr 2000 20:26:11 -0000 Delivered-To: apmail-jakarta-ant-cvs@apache.org Received: (qmail 77690 invoked by uid 1059); 27 Apr 2000 20:26:10 -0000 Date: 27 Apr 2000 20:26:10 -0000 Message-ID: <20000427202610.77689.qmail@locus.apache.org> From: craigmcc@locus.apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant buildAnt buildAnt.xml craigmcc 00/04/27 13:26:10 Added: . buildAnt buildAnt.xml Log: Initial versions of a build script that will create nightly distribution files of Ant (and optionally install them on the Jakarta web server) that include the JAXP reference implementation JAR files ("jaxp.jar" and "parser.jar") that are redistributable. Prerequisites for the successful execution of this script are listed in the comments. Because the script is intended to run from a "cron" job on the Jakarta server, no Windows version is provided. Revision Changes Path 1.1 jakarta-ant/buildAnt Index: buildAnt =================================================================== #!/bin/bash # ----------------------------------------------------------------------------- # buildAnt -- Build Nightly Distribution Files for ANT # # Goals: # - Create nightly distribution files of Ant, including the JAXP reference # implementation JAR files (so no extra downloads are needed), in the usual # formats # - Optionally, install these distribution files on the Jakarta web server # # Prerequisites: # - The user under which this script runs must have done a CVS "login" # for anonymous access to the Jakarta repositories # - Java Development Kit, version 1.2.2, installed and configured # (avoids compiler problems in 1.1 and 1.3 related to XML classes) # - Ant 3.1 binary distribution installed # - ANT_HOME points at this distribution directory (you can set it # in ~/.antrc) # - The "ant" script in $ANT_HOME/bin is accessible on your PATH # - Java API for XML Parsing (JAXP) 1.0 reference implementation installed # - JAXP_HOME points at this distribution directory (you can set it # in ~/.antrc) # - The "buildAnt.xml" script (from the Ant source repository) is # in the same directory that this script is. # - To execute the "install" target, you must be running on the Jakarta # server, as part of group "jakarta". # # Author: Craig R. McClanahan # Version: $Revision: 1.1 $ $Date: 2000/04/27 20:26:10 $ # ----------------------------------------------------------------------------- . ~/.antrc ant -buildfile buildAnt.xml -Djaxp.home=$JAXP_HOME "$@" 1.1 jakarta-ant/buildAnt.xml Index: buildAnt.xml ===================================================================