
|
If you were logged in you would be able to see more operations.
|
|
|
Sakai
Created: 17-Apr-2008 03:42
Updated: 23-Oct-2008 05:04
|
|
| Component/s: |
Mailtool
|
| Affects Version/s: |
2.5.0,
2.5.2
|
| Fix Version/s: |
None
|
|
| 2.4.x Status: |
None
|
| 2.5.x Status: |
None
|
| 2.6.x Status: |
None
|
|
The classpath entry does not match with the pom entry for commons-fileupload:
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.1.1</version>
<type>jar</type>
</dependency>
.classpath:
<classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar"/>
Change the .classpath line to read:
<classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.1.1/commons-fileupload-1.1.1.jar"/>
|
|
Description
|
The classpath entry does not match with the pom entry for commons-fileupload:
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.1.1</version>
<type>jar</type>
</dependency>
.classpath:
<classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar"/>
Change the .classpath line to read:
<classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.1.1/commons-fileupload-1.1.1.jar"/> |
Show » |
|