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 <[EMAIL PROTECTED]>
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 @@
<classpath>
<path refid="build.classpath">
</path>
+ <pathelement
path="${ant.home}/lib/xml-apis.jar:${ant.home}/lib/xercesImpl.jar"/>
<pathelement path="${testclassesdir}">
</pathelement>
<pathelement path="${classesdir}">
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 @@
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
- <version>6</version>
+ <version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.commons.fileupload</groupId>
+ <groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
<name>Commons FileUpload</name>
@@ -95,6 +95,10 @@
<contributor>
<name>Aaron Freeman</name>
<email>[EMAIL PROTECTED]</email>
+ </contributor>
+ <contributor>
+ <name>Gary Gregory</name>
+ <email>[EMAIL PROTECTED]</email>
</contributor>
<contributor>
<name>Michael Macaluso</name>
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.
</action>
+ <action dev="jochen" type="fix" issue="FILEUPLOAD-153"
+ due-to="Gary Gregory" due-to-email="[EMAIL PROTECTED]">
+ Fixed a classpath problem when building with Sun JDK 1.3.1
+ and Ant.
+ </action>
</release>
<release version="1.2" date="2007-02-13">