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
In the pom.xml for the JarPack project, the checksum-maven-plugin is configured to point to the directory data. The fileSet will interpret this as a relative path, and will truncate any Java JRE sub-folders that happen to end with data. For example, when processing Java 11 folder data/legal/jdk.localedata/, the path data/legal/jdk.locale/ will be written to the file-list.xml file within the new JarPack JAR.
To correct this, edit the pom file and change configuration of the checksum-maven-plugin so the directory is the absolute path ${project.basedir}/data rather than the relative path data.
The text was updated successfully, but these errors were encountered:
Mike4Online
changed the title
Some JDK 11 folde rpaths are truncated
Some JDK 11 folder paths are truncated
Jun 16, 2021
In the pom.xml for the JarPack project, the checksum-maven-plugin is configured to point to the directory data. The fileSet will interpret this as a relative path, and will truncate any Java JRE sub-folders that happen to end with data. For example, when processing Java 11 folder data/legal/jdk.localedata/, the path data/legal/jdk.locale/ will be written to the file-list.xml file within the new JarPack JAR.
To correct this, edit the pom file and change configuration of the checksum-maven-plugin so the directory is the absolute path ${project.basedir}/data rather than the relative path data.
The text was updated successfully, but these errors were encountered: