Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 19107 invoked from network); 10 Apr 2002 12:24:44 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 10 Apr 2002 12:24:44 -0000 Received: (qmail 7886 invoked by uid 97); 10 Apr 2002 12:24:37 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 7840 invoked by uid 97); 10 Apr 2002 12:24:36 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 7828 invoked by uid 97); 10 Apr 2002 12:24:35 -0000 Date: 10 Apr 2002 12:24:34 -0000 Message-ID: <20020410122434.9414.qmail@icarus.apache.org> From: donaldp@apache.org To: jakarta-ant-myrmidon-cvs@apache.org Subject: cvs commit: jakarta-ant-myrmidon/aut/src/conf MANIFEST.MF X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N donaldp 02/04/10 05:24:34 Added: aut .cvsignore ant.properties.sample build.xml BUILDING.txt project.properties README.txt aut/src/conf MANIFEST.MF Log: Add in files required to build product Revision Changes Path 1.1 jakarta-ant-myrmidon/aut/.cvsignore Index: .cvsignore =================================================================== ant.properties build checkstyle.cache distributions dist aut-* *.el *.ipr 1.1 jakarta-ant-myrmidon/aut/ant.properties.sample Index: ant.properties.sample =================================================================== # ----------------------------------------------------------------------------- # Component ant.properties.sample # # This is an example "ant.properties" file, used to customize the building of # the component for your local environment. It defines the location of all # external modules that this component depend on. Copy this file to # "ant.properties" in the source directory, and customize it as needed. # # $Id: ant.properties.sample,v 1.1 2002/04/10 12:24:34 donaldp Exp $ # ----------------------------------------------------------------------------- # -------------------------------------------------- # COMPONENT-SPECIFIC REQUIRED LIBRARIES # -------------------------------------------------- # ----- Compile Control Flags ----- build.debug=on build.optimize=off build.deprecation=off #build.compiler=jikes # ----- Base Directory in which all the packages are stored ----- base.path=${basedir}/../.. # -------------------------------------------------- # REQUIRED LIBRARIES # -------------------------------------------------- # -------------------------------------------------- # OPTIONAL LIBRARIES # -------------------------------------------------- # ----- JUnit Unit Test Suite, version 3.7 or later. ----- # Not needed if junit.jar is in $ANT_HOME/lib junit.home=${base.path}/junit3.7 junit.lib=${junit.home} junit.jar=${junit.lib}/junit.jar # ----- Checkstyle, version 2.1 or later ----- # Uncomment the 'do.checkstyle' flag property to enable checkstyle # do.checkstyle= checkstyle.home=${base.path}/checkstyle-2.1 checkstyle.lib=${checkstyle.home} checkstyle.jar=${checkstyle.lib}/checkstyle-all-2.1.jar 1.1 jakarta-ant-myrmidon/aut/build.xml Index: build.xml =================================================================== 1.1 jakarta-ant-myrmidon/aut/BUILDING.txt Index: BUILDING.txt =================================================================== Building The Component ====================== Building from source distribution --------------------------------- In order to build a binary distribution version of the component from a source distribution, you must have a Java Development Kit (JDK) for version 1.1 (or later) downloaded and installed (version 1.3.1 recommended), and do the following: (0) Download and Install a Java Development Kit * Download a Java Development Kit (JDK) release (version 1.1 or later) from: http://java.sun.com/j2se/ * Install the JDK according to the instructions included with the release. * Set an environment variable JAVA_HOME to the pathname of the directory into which you installed the JDK release. (1) Download and Install the Ant Binary Distribution * Download a binary distribution of Ant 1.4.1 from: http://jakarta.apache.org/builds/jakarta-ant/release/v1.4.1/bin/ On a Windows platform, you will need: jakarta-ant-1.4.1-bin.zip jakarta-ant-1.4.1-optional.jar On a Unix platform, you will need: jakarta-ant-1.4.1-bin.tar.gz jakarta-ant-1.4.1-optional.jar * Unpack the binary distribution into a convenient location so that the Ant release resides in its own directory (conventionally named "jakarta-ant-1.4.1"). For the purposes of the remainder of this document, the symbolic name "${ant.home}" is used to refer to the full pathname of the release directory. * Copy the file "jakarta-ant-1.4.1-optional.jar", downloaded above, into the directory "${ant.home}/lib". This makes available several Ant extension commands that are commonly required when building Jakarta based projects. * Modify the PATH environment variable to include directory "${ant.home}/bin" in its list. This makes the "ant" command line script available, which will be used to actually perform the build. (2) Download and Install the JUnit Testing Package (OPTIONAL) NOTE: This is only required if you wish to run the unit tests for this component * Download the JUnit unit test package (version 3.7 or later) from: http://www.junit.org/ * Unpack the package into a convenient location so that it resides in its own subdirectory. * Copy the file "junit.jar", downloaded above, into the directory "${ant.home}/lib". This makes available the unit testing tasks that are commonly required when building Jakarta based projects. (3) Download and Install Checkstyle, 2.1 or later (OPTIONAL) NOTE: This is only required if you wish to generate reports regarding code style. * Download the Checkstyle package (version 2.1 or later) from: http://checkstyle.sourceforge.net/ * Unpack the package into a convenient location so that it resides in its own subdirectory. (4) Download and Install the Xalan, XSLT engine (OPTIONAL) NOTE: This is only required if you wish to generate reports for the dependency analysis, checkstyle and unit testing results. * Download the Xalan package (version 2.3.1 or later) from: http://xml.apache.org/xalan-j/ * Unpack the package into a convenient location so that it resides in its own subdirectory. * Copy the files "xalan.jar", and "xml-apis.jar", downloaded above, into the directory "${ant.home}/lib". This makes available the XSLT reporting capabilities. (5) Customize Build Properties For This Subproject Most Jakarta subprojects allow you to customize Ant properties (with default values defined in the "build.xml" file. This is done by creating a text file named "ant.properties" in the source distribution directory (for property definitions local to this subproject) and/or your user home directory (for property definitions shared across subprojects). You can use the included "ant.properties.sample" file as a starting point for this. External dependencies are satisfied by configuring appropriate values in your ant.properties file. The easiest way to satisfy these dependencies is to copy the "ant.properties.sample" file (in the top-level directory) to "ant.properties", and then edit it to suit your environment. On Unix, this would be done as: cd @dist.name@ cp ant.properties.sample ant.properties emacs ant.properties NOTE: Be *sure* that you do not check "ant.properties" in to the CVS repository. This file is local to your own development environment, and each developer will have their own version. (6) Build A Binary Distribution Open a command line shell, and issue the following commands: cd @dist.name@ ant -projecthelp If everything is installed correctly, you should see a list of the Ant "targets" that represent different commands you might wish to build. By convention, the "jar" target creates the jar of the component. To execute it, type the following commands: cd @dist.name@ ant jar This will create a jar in the @dist.name@/build/lib directory that contains the component. 1.1 jakarta-ant-myrmidon/aut/project.properties Index: project.properties =================================================================== name=myrmidon-aut Name=Myrmidon AUT dir-name=aut version=1.0 year=2000-2002 1.1 jakarta-ant-myrmidon/aut/README.txt Index: README.txt =================================================================== Myrmidon AUT ------------ The AUT is a collection of utility packages designed to work with ant. Getting Started: ---------------- If you downloaded a source release of the component then you will need to build the component. Directions for building the component are located in BUILDING.txt If you downloaded a binary release, or a release with both binary and source then it is recomended you look over the documentation in docs/index.html - and then look into the examples/ directory for examples of the component in action. 1.1 jakarta-ant-myrmidon/aut/src/conf/MANIFEST.MF Index: MANIFEST.MF =================================================================== Extension-Name: @name@ Specification-Vendor: Apache Software Foundation Specification-Version: 1.0 Implementation-Vendor: Apache Software Foundation Implementation-Version: @package-version@ -- To unsubscribe, e-mail: For additional commands, e-mail: