You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use iso9660-maven-plugin 2.0.1 as archiver to let the assembly-plugin create ISOs.
See attached Demo project
What happened
Build fails with an exception "Caused by: com.github.stephenc.javaisotools.sabre.HandlerException: Joliet: Empty directory name encountered."
see attachment
What should happen
no exception
Analysis
When specifying outputDirectory in a fileSet the assembly plugin attaches a trailing / to the directory name. E.g. <outputDirectory>someDir</outputDirectory> gets someDir/
This line tries to extract the name of the child directory. E.g. it tries to convert someParent/someDir to someDir
When the child ends with a slash however the method transforms someDir/ to an empty String instead of someDir as it would be expected.
How to reproduce
What happened
What should happen
Analysis
outputDirectory
in afileSet
the assembly plugin attaches a trailing / to the directory name. E.g. <outputDirectory>someDir</outputDirectory> gets someDir/Attachements
exception.log
maven-project.zip
The text was updated successfully, but these errors were encountered: