Maven Archiver putting in weird line breaks in classpath for manifest

前端 未结 2 1450
眼角桃花
眼角桃花 2021-01-17 18:13

Per the java spec the classpath line in the manifest.mf for a jar can only be a certain number of bytes. After that a line break is inserted and the new line begins with an

2条回答
  •  温柔的废话
    2021-01-17 18:41

    This is in line with the specification for Java manifest files. Note the line length is 72 characters, and if it exceeds that it is meant to wrap at that point.

提交回复
热议问题