Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1B99D11509 for ; Tue, 2 Sep 2014 16:30:07 +0000 (UTC) Received: (qmail 33590 invoked by uid 500); 2 Sep 2014 16:30:06 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 33518 invoked by uid 500); 2 Sep 2014 16:30:06 -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 33509 invoked by uid 99); 2 Sep 2014 16:30:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Sep 2014 16:30:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED 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; Tue, 02 Sep 2014 16:30:05 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8030B2388999; Tue, 2 Sep 2014 16:29:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1622059 - in /commons/proper/pool/trunk: pom.xml src/changes/changes.xml Date: Tue, 02 Sep 2014 16:29:45 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140902162945.8030B2388999@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Tue Sep 2 16:29:45 2014 New Revision: 1622059 URL: http://svn.apache.org/r1622059 Log: [POOL-273] Update cglib to 3.1 from 3.0. "mvn test" OK. Modified: commons/proper/pool/trunk/pom.xml commons/proper/pool/trunk/src/changes/changes.xml Modified: commons/proper/pool/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/pom.xml?rev=1622059&r1=1622058&r2=1622059&view=diff ============================================================================== --- commons/proper/pool/trunk/pom.xml (original) +++ commons/proper/pool/trunk/pom.xml Tue Sep 2 16:29:45 2014 @@ -123,7 +123,7 @@ cglib cglib - 3.0 + 3.1 true Modified: commons/proper/pool/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/changes/changes.xml?rev=1622059&r1=1622058&r2=1622059&view=diff ============================================================================== --- commons/proper/pool/trunk/src/changes/changes.xml (original) +++ commons/proper/pool/trunk/src/changes/changes.xml Tue Sep 2 16:29:45 2014 @@ -43,8 +43,7 @@ The type attribute can be add,u Apache Commons Pool Changes - + Fixed error in GenericKeyedObjectPool constructor causing minEvictableIdleTimeMillis to be used in place of timeBetweenEvictionRunsMillis in eviction timer setup @@ -70,6 +69,9 @@ The type attribute can be add,u block indefinitely. Also modified computation to include latency clients experience due to waiting on factory methods. + + Update cglib to 3.1 from 3.0. +