Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 74488 invoked from network); 20 Dec 2009 18:13:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Dec 2009 18:13:58 -0000 Received: (qmail 37775 invoked by uid 500); 20 Dec 2009 18:13:58 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 37675 invoked by uid 500); 20 Dec 2009 18:13:57 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 37666 invoked by uid 99); 20 Dec 2009 18:13:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Dec 2009 18:13:57 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Dec 2009 18:13:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 17D1C2388999; Sun, 20 Dec 2009 18:13:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r892630 - /commons/proper/dbcp/trunk/build.properties.sample-1.3 Date: Sun, 20 Dec 2009 18:13:31 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091220181331.17D1C2388999@eris.apache.org> Author: psteitz Date: Sun Dec 20 18:13:30 2009 New Revision: 892630 URL: http://svn.apache.org/viewvc?rev=892630&view=rev Log: Added compatability build properties sample. Added: commons/proper/dbcp/trunk/build.properties.sample-1.3 Added: commons/proper/dbcp/trunk/build.properties.sample-1.3 URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/build.properties.sample-1.3?rev=892630&view=auto ============================================================================== --- commons/proper/dbcp/trunk/build.properties.sample-1.3 (added) +++ commons/proper/dbcp/trunk/build.properties.sample-1.3 Sun Dec 20 18:13:30 2009 @@ -0,0 +1,54 @@ +# 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. +########################################################################## +# Sample Ant build.properties file for building under JDK 1.4 or 1.5 +# +# This setup assumes dependent jars are in a local maven 2 repository. +# However the jars are located, the properties ending in ".jar" need to +# expand to full paths to the jars. +########################################################################## + +# Repository base path +repository=${user.home}/.m2/repository + +# commons-pool.jar - path to commons-pool-1.5.4.jar +commons-pool.home=${repository}/commons-pool/commons-pool/1.5.4 +commons-pool.jar=${commons-pool.home}/commons-pool-1.5.4.jar + +# JUnit +junit.home=${repository}/junit/junit/3.8.2 +junit.jar=${junit.home}/junit-3.8.2.jar + +# XML parser +xerces.home=${repository}/xerces/xercesImpl/2.4.0 +xerces.jar=${xerces.home}/xercesImpl-2.4.0.jar + +# Tomcat naming jars - needed only for JNDI tests +naming.common.home=${repository}/tomcat/naming-common/5.0.28 +naming-common.jar=${naming.common.home}/naming-common-5.0.28.jar +naming.java.home=${repository}/tomcat/naming-java/5.0.28 +naming-java.jar=${naming.java.home}/naming-java-5.0.28.jar + +# Commons logging - dependency of naming jars +commons-logging.home=${repository}/commons-logging/commons-logging/1.1.1 +commons-logging.jar=${commons-logging.home}/commons-logging-1.1.1.jar + +# JTA - needed for managed connections +jta-spec.jar=${repository}/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1/geronimo-jta_1.1_spec-1.1.jar +jta-impl.jar=${repository}/org/apache/geronimo/modules/geronimo-transaction/1.2-beta/geronimo-transaction-1.2-beta.jar + +# JTA dependencies - required so the test cases run +backport-util-concurrent.jar=${repository}/backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.jar +ejb-spec.jar=${repository}/org/apache/geronimo/specs/geronimo-ejb_2.1_spec/1.1/geronimo-ejb_2.1_spec-1.1.jar