Another frustrating day would be to be bothered by a stray space in your file and being blocked for a day.
Thats what happened to me while building something that requires surgical editing in MANIFEST.MF.
Lets discuss the errors:
- "Header must be terminated by a line break":
The problem is there is a space after the last: tuple.
- "Dependencies are not being generated or the value part of the
: is being ignored."
After the last: tuple, have a line break.
Example: if its something like this in the last line:Require-Bundle: org.spring,
org.apache
then change it to:
Require-Bundle: org.spring,
org.apache
Note that there is no space in the last line!