Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0-beta-2
-
Component/s: wagon-http-lightweight
-
Labels:None
-
Number of attachments :
Description
The code doesn't work correctly if the following two conditions are met simultaneously:
the local file doesn't exist — hence the timestamp parameter is 0
(ii) the remote server doesn't send the "Last-Modified" header.
Since the lastModified variable is initialized to 0 in line 355, if the above two conditions are met,
the following if statement at line 371 evaluates to false:
- if ( timestamp < lastModified )
{
retValue = true;
and therefore the file won't be downloaded, causing the dependency to fail.
This used to work with Maven 1.0.2.
To fix this problem, initialize the lastModified variable to 1.
Issue Links
- is depended upon by
-
MAVEN-1659
Dependency jars are not downloading from remote repository placed in Subversion with http access
-
- relates to
-
WAGON-90
The getIfNewer method fails to work if file doesn't exist locally when using repo proxy
-
This is a trivial fix and it's causing us
MAVEN-1659.