Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: Release 1.5
-
Fix Version/s: Release 1.5.1
-
Component/s: None
-
Labels:None
-
Environment:Ant
Description
The created package hierarchy in source file jar (stripes-1.5b1-sources.jar) starts with a folder named "." (dot). Should start with "net".
This will cause an IDE like eclipse to fail integrating sources to the environment.
Created like:
./net/sourceforge/stripes/...
Should be created like:
net/sourceforge/stripes/...
Tested on Ubuntu 8.0.4 and Windows XP
Ant 1.7.x
Java version 1.6.0_x
This is also the case with the bundle jar. It's caused by the Ant zipfileset "prefix" attribute. This will not cause any errors though. By removing attribute "prefix" from source packaging will fix the problem. Can't see why the prefix is there in the first place?