mirror of https://github.com/qos-ch/slf4j
Restore 'Main-Class' header in slf4j-migrator Manifest.MF
Because the Manifest.MF did not have a terminating new-line it was invalid and its content was ignored, thus the Main-Class entry was missing. To have less files in the project, generate the entry using the maven-bundle-plugin. Signed-off-by: Hannes Wellmann <wellmann.hannes1@gmx.net>
This commit is contained in:
parent
0b4d88edef
commit
f871e7f2e9
|
|
@ -16,4 +16,20 @@
|
|||
<name>SLF4J Migrator</name>
|
||||
<description>SLF4J Migrator</description>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Main-Class>org.slf4j.migrator.Main</Main-Class>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Main-Class: org.slf4j.migrator.Main
|
||||
Loading…
Reference in New Issue