Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
jar files without manifest entry will cause a NPE because
GroovyClassLoader#expandClassPath
Manifest manifest = jar.getManifest();
manifest is never checked for null and accoring to javadoc is may be null.
Patch following.