Adding vendor information to MANIFEST.MF using sbt-assembly
问题 I'm using sbt-assembly to create a runnable jar, but my application crashes because jai imageio loads the vendor name from the MANIFEST.MF file. If I manually edit the META-INF/MANIFEST.MF file from: Manifest-Version: 1.0 Main-Class: myMainClass to Implementation-Vendor: foo Implementation-Title: bar Implementation-Version: 1.0 Manifest-Version: 1.0 Main-Class: myMainClass Everything works fine. How do I configure sbt or sbt-assembly to include that additional implementation information in