Merge pull request #5730 from eclipse/jetty-10.0.x-fix-runner-manifest
Correct META-INF/LICENSE handling
This commit is contained in:
commit
a4e35b87c0
|
@ -27,10 +27,23 @@
|
|||
</goals>
|
||||
<configuration>
|
||||
<includes>**</includes>
|
||||
<excludes>**/MANIFEST.MF,META-INF/*.RSA,META-INF/*.DSA,META-INF/*.SF,module-info.class</excludes>
|
||||
<excludes>
|
||||
**/MANIFEST.MF,
|
||||
META-INF/LICENSE,
|
||||
META-INF/*.RSA,
|
||||
META-INF/*.DSA,
|
||||
META-INF/*.SF,
|
||||
module-info.class,
|
||||
readme.txt,
|
||||
MANIFEST.MF,
|
||||
about.html,
|
||||
ecj.1
|
||||
</excludes>
|
||||
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
||||
<overWriteReleases>false</overWriteReleases>
|
||||
<overWriteSnapshots>true</overWriteSnapshots>
|
||||
<excludeScope>test</excludeScope>
|
||||
<includeScope>runtime</includeScope>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
|
@ -84,10 +97,12 @@
|
|||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestFile>src/main/resources/MANIFEST.MF</manifestFile>
|
||||
<manifest>
|
||||
<mainClass>org.eclipse.jetty.runner.Runner</mainClass>
|
||||
</manifest>
|
||||
<manifestEntries>
|
||||
<Comment>Jetty Runner</Comment>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Comment: Jetty Runner
|
Loading…
Reference in New Issue