[jboss-cvs] CacheBenchFwk/apache-ant-1.7.0 ...

Manik Surtani manik at jboss.org
Mon May 21 12:44:46 EDT 2007


  User: msurtani
  Date: 07/05/21 12:44:46

  Added:       apache-ant-1.7.0       fetch.xml LICENSE.dom LICENSE
                        get-m2.xml LICENSE.sax LICENSE.xerces
  Log:
  Added Ant 1.7.0 bins
  
  Revision  Changes    Path
  1.1      date: 2007/05/21 16:44:46;  author: msurtani;  state: Exp;CacheBenchFwk/apache-ant-1.7.0/fetch.xml
  
  Index: fetch.xml
  ===================================================================
  <?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.
  -->
  <!--
    =======================================================================
      Build file to fetch optional libraries for Apache Ant
    =======================================================================
  -->
  <project name="fetch" default="all" basedir=".">
  
  <description>
    This build file downloads JAR files that optional Ant tasks use,
    and installs them in a location that is accessible the next time Ant runs.
  
    You can choose three locations, by going -Ddest=LOCATION on the command line
    -Ddest=user     user lib dir  ${user.home}/.ant/lib
    -Ddest=system   ant lib dir   ${ant.home}/lib --Default--
    -Ddest=optional optional dir  ${ant.home}/lib/optional  (for Ant developers)
  
    You may also need to set proxy settings. On Java1.5, Ant tries to get
    this from the OS, unless you use the -noproxy option.
  
    Proxies can be configured manually setting the JVM proxy values in the
    ANT_OPTS environment variable.
  
    For example, to set the proxy up in the tcsh shell, the command would be
    something like:
  
    For csh/tcsh:
      setenv ANT_OPTS "-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080"
    For bash:
      export ANT_OPTS="-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080"
    For Windows, set the environment variable in the appropriate dialog box
    and open a new console. or, by hand
      set ANT_OPTS = -Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080
  </description>
  
    <!-- Give user a chance to override without editing this file
         (and without typing -D each time it compiles it) -->
    <property file="${user.home}/.ant/ant.properties"/>
    <property name="lib.dir" location="lib" />
    <property name="optional.dir" location="${lib.dir}/optional" />
    <property name="userlib.dir" location="${user.home}/.ant/lib" />
  
    <!-- load in our properties table -->
    <property file="${lib.dir}/libraries.properties"/>
  
    <import file="get-m2.xml" />
  
    <target name="pick-dest">
      <property name="dest" value="system" />
      <condition property="dest.dir"
        value="${lib.dir}">
        <equals arg1="${dest}" arg2="system" />
      </condition>
      <condition property="dest.dir"
        value="${optional.dir}">
        <equals arg1="${dest}" arg2="optional" />
      </condition>
      <condition property="dest.dir"
        value="${userlib.dir}">
        <equals arg1="${dest}" arg2="user" />
      </condition>
      <fail unless="dest.dir">Unknown destination : ${dest}</fail>
      <echo>Downloading to ${dest.dir}</echo>
      <property name="m2.dest.dir" value="${dest.dir}" />
    </target>
  
  
    <target name="macros" depends="pick-dest,get-m2"
      xmlns:artifact="antlib:org.apache.maven.artifact.ant">
  
      <macrodef name="f2">
        <attribute name="project" />
        <attribute name="archive" default="@{project}"/>
        <sequential>
          <fail>
          Unknown archive @{archive} -no property @{archive}.version defined.
            <condition>
              <not>
              <isset property="@{archive}.version"/>
              </not>
            </condition>
          </fail>
          <artifact:dependencies pathID="@{archive}.path">
            <dependency groupID="@{project}"
              artifactID="@{archive}"
              version="${@{archive}.version}"/>
          </artifact:dependencies>
          <!-- now we are left with the problem of getting the files
               into our directory -->
          <copypath destdir="${dest.dir}" pathref="@{archive}.path">
            <flattenmapper/>
          </copypath>
        </sequential>
      </macrodef>
    </target>
  
  
  
    <!-- any init stuff -->
    <target name="init" depends="macros" />
  
  
    <target name="diag" depends="init">
      <echoproperties />
    </target>
  
    <target name="logging"
      description="load logging libraries"
      depends="init">
      <f2 project="log4j" />
      <f2 project="commons-logging" archive="commons-logging-api" />
    </target>
  
    <target name="junit"
      description="load junit libraries"
      depends="init">
      <f2 project="junit" />
    </target>
  
    <target name="xml"
      description="load full XML libraries (xalan, resolver)"
      depends="init">
      <f2 project="xalan" />
      <f2 project="xml-resolver" />
    </target>
  
    <!--
     This is not used as
     1. we want the names of the libraries to be fixed, or it will break  Ant's manifest.
     2. We like to get the more recent artifacts than are in the repo at the time of writing (2006-10-16)
     3. Xerces has a dependency on v 1.3.03 of Xml-apis, which is wrong.
     If/when the artifacts stabilize, we could switch to it.
     -->
  
    <target name="xerces"
        description="load an updated version of Xerces"
        depends="init">
      <f2 project="xerces" archive="xercesImpl"/>
      <f2 project="xerces" archive="xmlParserAPIs" />
    </target>
  
    <target name="networking"
      description="load networking libraries (commons-net; jsch)"
      depends="init">
      <f2 project="commons-net" />
      <f2 project="com.jcraft" archive="jsch"/>
    </target>
  
    <target name="regexp"
      description="load regexp libraries"
      depends="init">
      <f2 project="regexp" />
      <f2 project="oro" />
    </target>
  
    <target name="antlr"
      description="load antlr libraries"
      depends="init">
      <f2 project="antlr" />
    </target>
  
    <target name="bcel"
      description="load bcel libraries"
      depends="init">
      <f2 project="bcel" />
    </target>
  
    <target name="jdepend"
      description="load jdepend libraries"
      depends="init">
      <f2 project="jdepend" />
    </target>
  
    <target name="bsf"
      description="load bsf libraries"
      depends="init">
      <f2 project="bsf" />
    </target>
  
    <target name="jruby"
            description="load jruby"
            depends="bsf">
      <f2 project="org.jruby" archive="jruby"/>
    </target>
  
    <target name="beanshell"
            description="load beanshell support"
            depends="bsf">
      <f2 project="org.beanshell" archive="bsh"/>
      <f2 project="org.beanshell" archive="bsh-core"/>
    </target>
  
    <target name="jython"
            description="load jython"
            depends="bsf">
      <f2 project="jython" archive="jython"/>
    </target>
  
    <target name="rhino"
            description="load rhino"
            depends="bsf">
      <f2 project="rhino" archive="js"/>
    </target>
  
    <target name="script"
            description="load script languages"
            depends="bsf,jruby,jython,beanshell,rhino"/>
  
    <target name="debugging"
      description="internal ant debugging"
      depends="init">
      <f2 project="which" />
    </target>
  
    <target name="all"
      description="load all the libraries"
      depends="logging,junit,xml,networking,regexp,antlr,bcel,jdepend,bsf,debugging,script" />
  
  </project>
  
  
  
  1.1      date: 2007/05/21 16:44:46;  author: msurtani;  state: Exp;CacheBenchFwk/apache-ant-1.7.0/LICENSE.dom
  
  Index: LICENSE.dom
  ===================================================================
  This license came from:
  http://www.w3.org/Consortium/Legal/copyright-software-19980720
  
  
  W3C® SOFTWARE NOTICE AND LICENSE
  Copyright © 1994-2001 World
  Wide Web Consortium, <a href="http://www.w3.org/">World
  Wide Web Consortium</a>, (<a href=
  "http://www.lcs.mit.edu/">Massachusetts Institute of
  Technology</a>, <a href="http://www.inria.fr/">Institut National de
  Recherche en Informatique et en Automatique</a>, <a href=
  "http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved.
  http://www.w3.org/Consortium/Legal/
  
  This W3C work (including software, documents, or other related
  items) is being provided by the copyright holders under the
  following license. By obtaining, using and/or copying this work,
  you (the licensee) agree that you have read, understood, and will
  comply with the following terms and conditions:
  Permission to use, copy, modify, and distribute this software
  and its documentation, with or without modification,  for any
  purpose and without fee or royalty is hereby granted, provided that
  you include the following on ALL copies of the software and
  documentation or portions thereof, including modifications, that
  you make:
  
  The full text of this NOTICE in a location viewable to users of
  the redistributed or derivative work.
  
  Any pre-existing intellectual property disclaimers, notices, or
  terms and conditions. If none exist, a short notice of the
  following form (hypertext is preferred, text is permitted) should
  be used within the body of any redistributed or derivative code:
  "Copyright © [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of
  Technology, Institut National de
  Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
  http://www.w3.org/Consortium/Legal/"
  
  Notice of any changes or modifications to the W3C files,
  including the date changes were made. (We recommend you provide 
  URIs to the location from which the code is derived.)
  
  THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND
  COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF
  MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
  USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD
  PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
  COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,
  SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE
  SOFTWARE OR DOCUMENTATION.
  
  The name and trademarks of copyright holders may NOT be used in
  advertising or publicity pertaining to the software without
  specific, written prior permission. Title to copyright in this
  software and any associated documentation will at all times remain
  with copyright holders.
  ____________________________________
  This formulation of W3C's notice and license became active on
  August 14 1998 so as to improve compatibility with GPL. This
  version ensures that W3C software licensing terms are no more
  restrictive than GPL and consequently W3C software may be
  distributed in GPL packages. See the older formulation for the
  policy prior to this date. Please see our Copyright FAQ for common 
  questions about using materials from
  our site, including specific terms and conditions for packages like
  libwww, Amaya, and Jigsaw. 
  Other questions about this notice can be
  directed to site-policy at w3.org.
  
  webmaster
  
  
  
  1.1      date: 2007/05/21 16:44:46;  author: msurtani;  state: Exp;CacheBenchFwk/apache-ant-1.7.0/LICENSE
  
  Index: LICENSE
  ===================================================================
  /*
   *                                 Apache License
   *                           Version 2.0, January 2004
   *                        http://www.apache.org/licenses/
   *
   *   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
   *
   *   1. Definitions.
   *
   *      "License" shall mean the terms and conditions for use, reproduction,
   *      and distribution as defined by Sections 1 through 9 of this document.
   *
   *      "Licensor" shall mean the copyright owner or entity authorized by
   *      the copyright owner that is granting the License.
   *
   *      "Legal Entity" shall mean the union of the acting entity and all
   *      other entities that control, are controlled by, or are under common
   *      control with that entity. For the purposes of this definition,
   *      "control" means (i) the power, direct or indirect, to cause the
   *      direction or management of such entity, whether by contract or
   *      otherwise, or (ii) ownership of fifty percent (50%) or more of the
   *      outstanding shares, or (iii) beneficial ownership of such entity.
   *
   *      "You" (or "Your") shall mean an individual or Legal Entity
   *      exercising permissions granted by this License.
   *
   *      "Source" form shall mean the preferred form for making modifications,
   *      including but not limited to software source code, documentation
   *      source, and configuration files.
   *
   *      "Object" form shall mean any form resulting from mechanical
   *      transformation or translation of a Source form, including but
   *      not limited to compiled object code, generated documentation,
   *      and conversions to other media types.
   *
   *      "Work" shall mean the work of authorship, whether in Source or
   *      Object form, made available under the License, as indicated by a
   *      copyright notice that is included in or attached to the work
   *      (an example is provided in the Appendix below).
   *
   *      "Derivative Works" shall mean any work, whether in Source or Object
   *      form, that is based on (or derived from) the Work and for which the
   *      editorial revisions, annotations, elaborations, or other modifications
   *      represent, as a whole, an original work of authorship. For the purposes
   *      of this License, Derivative Works shall not include works that remain
   *      separable from, or merely link (or bind by name) to the interfaces of,
   *      the Work and Derivative Works thereof.
   *
   *      "Contribution" shall mean any work of authorship, including
   *      the original version of the Work and any modifications or additions
   *      to that Work or Derivative Works thereof, that is intentionally
   *      submitted to Licensor for inclusion in the Work by the copyright owner
   *      or by an individual or Legal Entity authorized to submit on behalf of
   *      the copyright owner. For the purposes of this definition, "submitted"
   *      means any form of electronic, verbal, or written communication sent
   *      to the Licensor or its representatives, including but not limited to
   *      communication on electronic mailing lists, source code control systems,
   *      and issue tracking systems that are managed by, or on behalf of, the
   *      Licensor for the purpose of discussing and improving the Work, but
   *      excluding communication that is conspicuously marked or otherwise
   *      designated in writing by the copyright owner as "Not a Contribution."
   *
   *      "Contributor" shall mean Licensor and any individual or Legal Entity
   *      on behalf of whom a Contribution has been received by Licensor and
   *      subsequently incorporated within the Work.
   *
   *   2. Grant of Copyright License. Subject to the terms and conditions of
   *      this License, each Contributor hereby grants to You a perpetual,
   *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   *      copyright license to reproduce, prepare Derivative Works of,
   *      publicly display, publicly perform, sublicense, and distribute the
   *      Work and such Derivative Works in Source or Object form.
   *
   *   3. Grant of Patent License. Subject to the terms and conditions of
   *      this License, each Contributor hereby grants to You a perpetual,
   *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   *      (except as stated in this section) patent license to make, have made,
   *      use, offer to sell, sell, import, and otherwise transfer the Work,
   *      where such license applies only to those patent claims licensable
   *      by such Contributor that are necessarily infringed by their
   *      Contribution(s) alone or by combination of their Contribution(s)
   *      with the Work to which such Contribution(s) was submitted. If You
   *      institute patent litigation against any entity (including a
   *      cross-claim or counterclaim in a lawsuit) alleging that the Work
   *      or a Contribution incorporated within the Work constitutes direct
   *      or contributory patent infringement, then any patent licenses
   *      granted to You under this License for that Work shall terminate
   *      as of the date such litigation is filed.
   *
   *   4. Redistribution. You may reproduce and distribute copies of the
   *      Work or Derivative Works thereof in any medium, with or without
   *      modifications, and in Source or Object form, provided that You
   *      meet the following conditions:
   *
   *      (a) You must give any other recipients of the Work or
   *          Derivative Works a copy of this License; and
   *
   *      (b) You must cause any modified files to carry prominent notices
   *          stating that You changed the files; and
   *
   *      (c) You must retain, in the Source form of any Derivative Works
   *          that You distribute, all copyright, patent, trademark, and
   *          attribution notices from the Source form of the Work,
   *          excluding those notices that do not pertain to any part of
   *          the Derivative Works; and
   *
   *      (d) If the Work includes a "NOTICE" text file as part of its
   *          distribution, then any Derivative Works that You distribute must
   *          include a readable copy of the attribution notices contained
   *          within such NOTICE file, excluding those notices that do not
   *          pertain to any part of the Derivative Works, in at least one
   *          of the following places: within a NOTICE text file distributed
   *          as part of the Derivative Works; within the Source form or
   *          documentation, if provided along with the Derivative Works; or,
   *          within a display generated by the Derivative Works, if and
   *          wherever such third-party notices normally appear. The contents
   *          of the NOTICE file are for informational purposes only and
   *          do not modify the License. You may add Your own attribution
   *          notices within Derivative Works that You distribute, alongside
   *          or as an addendum to the NOTICE text from the Work, provided
   *          that such additional attribution notices cannot be construed
   *          as modifying the License.
   *
   *      You may add Your own copyright statement to Your modifications and
   *      may provide additional or different license terms and conditions
   *      for use, reproduction, or distribution of Your modifications, or
   *      for any such Derivative Works as a whole, provided Your use,
   *      reproduction, and distribution of the Work otherwise complies with
   *      the conditions stated in this License.
   *
   *   5. Submission of Contributions. Unless You explicitly state otherwise,
   *      any Contribution intentionally submitted for inclusion in the Work
   *      by You to the Licensor shall be under the terms and conditions of
   *      this License, without any additional terms or conditions.
   *      Notwithstanding the above, nothing herein shall supersede or modify
   *      the terms of any separate license agreement you may have executed
   *      with Licensor regarding such Contributions.
   *
   *   6. Trademarks. This License does not grant permission to use the trade
   *      names, trademarks, service marks, or product names of the Licensor,
   *      except as required for reasonable and customary use in describing the
   *      origin of the Work and reproducing the content of the NOTICE file.
   *
   *   7. Disclaimer of Warranty. Unless required by applicable law or
   *      agreed to in writing, Licensor provides the Work (and each
   *      Contributor provides its Contributions) on an "AS IS" BASIS,
   *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
   *      implied, including, without limitation, any warranties or conditions
   *      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
   *      PARTICULAR PURPOSE. You are solely responsible for determining the
   *      appropriateness of using or redistributing the Work and assume any
   *      risks associated with Your exercise of permissions under this License.
   *
   *   8. Limitation of Liability. In no event and under no legal theory,
   *      whether in tort (including negligence), contract, or otherwise,
   *      unless required by applicable law (such as deliberate and grossly
   *      negligent acts) or agreed to in writing, shall any Contributor be
   *      liable to You for damages, including any direct, indirect, special,
   *      incidental, or consequential damages of any character arising as a
   *      result of this License or out of the use or inability to use the
   *      Work (including but not limited to damages for loss of goodwill,
   *      work stoppage, computer failure or malfunction, or any and all
   *      other commercial damages or losses), even if such Contributor
   *      has been advised of the possibility of such damages.
   *
   *   9. Accepting Warranty or Additional Liability. While redistributing
   *      the Work or Derivative Works thereof, You may choose to offer,
   *      and charge a fee for, acceptance of support, warranty, indemnity,
   *      or other liability obligations and/or rights consistent with this
   *      License. However, in accepting such obligations, You may act only
   *      on Your own behalf and on Your sole responsibility, not on behalf
   *      of any other Contributor, and only if You agree to indemnify,
   *      defend, and hold each Contributor harmless for any liability
   *      incurred by, or claims asserted against, such Contributor by reason
   *      of your accepting any such warranty or additional liability.
   *
   *   END OF TERMS AND CONDITIONS
   *
   *   APPENDIX: How to apply the Apache License to your work.
   *
   *      To apply the Apache License to your work, attach the following
   *      boilerplate notice, with the fields enclosed by brackets "[]"
   *      replaced with your own identifying information. (Don't include
   *      the brackets!)  The text should be enclosed in the appropriate
   *      comment syntax for the file format. We also recommend that a
   *      file or class name and description of purpose be included on the
   *      same "printed page" as the copyright notice for easier
   *      identification within third-party archives.
   *
   *   Copyright [yyyy] [name of copyright owner]
   *
   *   Licensed 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.
   */
  
  
  
  1.1      date: 2007/05/21 16:44:46;  author: msurtani;  state: Exp;CacheBenchFwk/apache-ant-1.7.0/get-m2.xml
  
  Index: get-m2.xml
  ===================================================================
  <?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.
  -->
  <!--
    =======================================================================
     Build file to fetch maven2 tasks; extracted from (Ant's) fetch.xml
    =======================================================================
  -->
  <project name="get-m2" default="get-m2" basedir=".">
  
  <description>
    This build file downloads the Maven2 Ant tasks,
    and installs them in the location specified by the m2.dest.dir property.
  
    You may need to set proxy settings. On Java1.5, Ant tries to get
    this from the OS, unless you use the -noproxy option.
  
    Proxies can be configured manually setting the JVM proxy values in the
    ANT_OPTS environment variable.
  
    For example, to set the proxy up in the tcsh shell, the command would be
    something like:
  
    For csh/tcsh:
      setenv ANT_OPTS "-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080"
    For bash:
      export ANT_OPTS="-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080"
    For Windows, set the environment variable in the appropriate dialog box
    and open a new console. or, by hand
      set ANT_OPTS = -Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080
  </description>
  
    <property file="get-m2.properties" />
  
    <property name="m2.antlib.resource"
              value="org/apache/maven/artifact/ant/antlib.xml" />
  
    <property name="m2.antlib.uri"
              value="antlib:org.apache.maven.artifact.ant" />
  
    <macrodef name="require">
      <attribute name="property" />
      <sequential>
        <fail unless="@{property}">$${@{property}} not specified</fail>
      </sequential>
    </macrodef>
  
    <target name="probe-m2">
      <require property="m2.dest.dir" />
      <require property="m2.jar.name" />
  
      <!-- Look for M2 ant tasks in our classpath-->
      <property name="m2.artifact" location="${m2.dest.dir}/${m2.jar.name}" />
      <available property="m2.antlib.found" resource="${m2.antlib.resource}" />
      <condition property="m2.antlib.typefound">
        <typefound name="${m2.antlib.uri}:artifact" />
      </condition>
      <available property="m2.artifact.found" file="${m2.artifact}" type="file" />
    </target>
  
    <target name="download-m2" depends="probe-m2" unless="m2.artifact.found">
      <require property="m2.antlib.url" />
      <echo>Downloading to ${m2.dest.dir}</echo>
  
      <mkdir dir="${m2.dest.dir}" />
      <!-- fetch M2 ant tasks into our repository, if it is not there-->
      <get src="${m2.antlib.url}"
        dest="${m2.artifact}"
        verbose="true"
        usetimestamp="false" />
    </target>
  
    <target name="dont-validate-m2-checksum" depends="probe-m2"
            if="m2.artifact.found">
      <property name="checksum.equal" value="true" />
    </target>
  
    <target name="validate-m2-checksum"
            depends="download-m2,dont-validate-m2-checksum"
            if="m2.sha1.checksum" unless="m2.artifact.found">
      <checksum file="${m2.artifact}"
          algorithm="SHA"
          property="${m2.sha1.checksum}"
          verifyProperty="checksum.equal" />
    </target>
  
    <target name="checksum-mismatch" depends="validate-m2-checksum"
            if="m2.sha1.checksum" unless="checksum.equal">
      <delete file="${m2.artifact}" />
      <fail>
        Failed to verify the downloaded file ${m2.antlib.url}" against the checksum
        coded into libraries.properties.
        The local copy has been deleted, for security reasons
      </fail>
    </target>
  
    <target name="checksum-match" depends="checksum-mismatch"
            unless="m2.antlib.found">
      <taskdef classpath="${m2.artifact}" resource="${m2.antlib.resource}"
               uri="${m2.antlib.uri}" />
    </target>
  
    <target name="get-m2" depends="checksum-match"
        description="Download the Maven2 Ant tasks" />
  
  </project>
  
  
  
  1.1      date: 2007/05/21 16:44:46;  author: msurtani;  state: Exp;CacheBenchFwk/apache-ant-1.7.0/LICENSE.sax
  
  Index: LICENSE.sax
  ===================================================================
  This license came from: http://www.megginson.com/SAX/copying.html
    However please note future versions of SAX may be covered 
    under http://saxproject.org/?selected=pd
  
  
  This page is now out of date -- see the new SAX site at 
  http://www.saxproject.org/ for more up-to-date
  releases and other information. Please change your bookmarks.
  
  
  SAX2 is Free!
  
  I hereby abandon any property rights to SAX 2.0 (the Simple API for
  XML), and release all of the SAX 2.0 source code, compiled code, and
  documentation contained in this distribution into the Public Domain.
  SAX comes with NO WARRANTY or guarantee of fitness for any
  purpose.
  
  David Megginson, david at megginson.com
  2000-05-05
  
  
  1.1      date: 2007/05/21 16:44:46;  author: msurtani;  state: Exp;CacheBenchFwk/apache-ant-1.7.0/LICENSE.xerces
  
  Index: LICENSE.xerces
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   *
   * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution,
   *    if any, must include the following acknowledgment:  
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowledgment may appear in the software itself,
   *    if and wherever such third-party acknowledgments normally appear.
   *
   * 4. The names "Xerces" and "Apache Software Foundation" must
   *    not be used to endorse or promote products derived from this
   *    software without prior written permission. For written 
   *    permission, please contact apache at apache.org.
   *
   * 5. Products derived from this software may not be called "Apache",
   *    nor may "Apache" appear in their name, without prior written
   *    permission of the Apache Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation and was
   * originally based on software copyright (c) 1999, International
   * Business Machines, Inc., http://www.ibm.com.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  
  



More information about the jboss-cvs-commits mailing list