Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 59341 invoked from network); 12 Jan 2008 10:50:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Jan 2008 10:50:09 -0000 Received: (qmail 90721 invoked by uid 500); 12 Jan 2008 10:49:58 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 90629 invoked by uid 500); 12 Jan 2008 10:49: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 90620 invoked by uid 99); 12 Jan 2008 10:49:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 12 Jan 2008 02:49:57 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 12 Jan 2008 10:49:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 551B11A9832; Sat, 12 Jan 2008 02:49:47 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r611398 - in /commons/proper/fileupload/branches/b_1_2_1: build.xml pom.xml src/changes/changes.xml Date: Sat, 12 Jan 2008 10:49:46 -0000 To: commits@commons.apache.org From: jochen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080112104947.551B11A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jochen Date: Sat Jan 12 02:49:45 2008 New Revision: 611398 URL: http://svn.apache.org/viewvc?rev=611398&view=rev Log: Fixed a classpath problem when building with Sun JDK 1.3.1 and Ant. PR: FILEUPLOAD-153 Submitted-By: Gary Gregory Modified: commons/proper/fileupload/branches/b_1_2_1/build.xml commons/proper/fileupload/branches/b_1_2_1/pom.xml commons/proper/fileupload/branches/b_1_2_1/src/changes/changes.xml Modified: commons/proper/fileupload/branches/b_1_2_1/build.xml URL: http://svn.apache.org/viewvc/commons/proper/fileupload/branches/b_1_2_1/build.xml?rev=611398&r1=611397&r2=611398&view=diff ============================================================================== --- commons/proper/fileupload/branches/b_1_2_1/build.xml (original) +++ commons/proper/fileupload/branches/b_1_2_1/build.xml Sat Jan 12 02:49:45 2008 @@ -131,6 +131,7 @@ + Modified: commons/proper/fileupload/branches/b_1_2_1/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/fileupload/branches/b_1_2_1/pom.xml?rev=611398&r1=611397&r2=611398&view=diff ============================================================================== --- commons/proper/fileupload/branches/b_1_2_1/pom.xml (original) +++ commons/proper/fileupload/branches/b_1_2_1/pom.xml Sat Jan 12 02:49:45 2008 @@ -22,10 +22,10 @@ org.apache.commons commons-parent - 6 + 5 4.0.0 - org.apache.commons.fileupload + commons-fileupload commons-fileupload 1.2.1 Commons FileUpload @@ -95,6 +95,10 @@ Aaron Freeman aaron@sendthisfile.com + + + Gary Gregory + ggregory@seagullsw.com Michael Macaluso Modified: commons/proper/fileupload/branches/b_1_2_1/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/fileupload/branches/b_1_2_1/src/changes/changes.xml?rev=611398&r1=611397&r2=611398&view=diff ============================================================================== --- commons/proper/fileupload/branches/b_1_2_1/src/changes/changes.xml (original) +++ commons/proper/fileupload/branches/b_1_2_1/src/changes/changes.xml Sat Jan 12 02:49:45 2008 @@ -74,6 +74,11 @@ is now thrown immediately, if the attachments headers contain a content-length value, which exceeds the configured limit. + + Fixed a classpath problem when building with Sun JDK 1.3.1 + and Ant. +