我的问题正是这个maven-shade插件用户面临的问题:
How to exclude META-INF files from bundle?
但我正在使用tomcat7-maven-plugin构建一个自运行的webapp。我最近切换了数据库驱动程序以使用Microsoft自己的驱动程序来实现JDBC4。现在我有问题,包括它作为我的exec-war目标中的extraDependency。以下是pom.xml
的相关部分。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>tomcat-run</id>
<goals>
<goal>exec-war-only</goal>
</goals>
<phase>package</phase>
<configuration>
<path>/oases</path>
<contextFile>applicationContext.xml</contextFile>
<extraDependencies>
<extraDependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</extraDependency>
</extraDependencies>
<excludes>
<exclude>META-INF/MSFTSIG.RSA</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
项目构建正常,但maven不遵守exclude
指令,以便sqljdbc4 RSA文件包含在META-INF目录中。这意味着当我尝试运行我的exec-war jar文件时,我收到此错误。
Exception in thread "main" java.lang.SecurityException: Invalid
signature file digest for Manifest main attributes
我已阅读代码,据我所知,插件已正确配置为排除sqljdbc4 META-INF文件。这是版本2.2的插件代码,这是我正在使用的。看起来这应该做我想要的。但是,exec-war jar仍包含META-INF/MSFTSIG.RSA
protected void extractJarToArchive( JarFile file, ArchiveOutputStream os, String[] excludes )
throws IOException
{
Enumeration<? extends JarEntry> entries = file.entries();
while ( entries.hasMoreElements() )
{
JarEntry j = entries.nextElement();
if ( excludes != null && excludes.length > 0 )
{
for ( String exclude : excludes )
{
if ( SelectorUtils.match( exclude, j.getName() ) )
{
continue;
}
}
}
if ( StringUtils.equalsIgnoreCase( j.getName(), "META-INF/MANIFEST.MF" ) )
{
continue;
}
os.putArchiveEntry( new JarArchiveEntry( j.getName() ) );
IOUtils.copy( file.getInputStream( j ), os );
os.closeArchiveEntry();
}
if ( file != null )
{
file.close();
}
}
}
EDITS
答案 0 :(得分:1)
您为AbstractExecWarMojo
发布的代码有一个错误:内部for循环中的continue
无效。相反,它应继续在外部while循环中,以便在exclude
匹配时跳过存档条目,如下所示:
protected void extractJarToArchive( JarFile file, ArchiveOutputStream os, String[] excludes )
throws IOException
{
Enumeration<? extends JarEntry> entries = file.entries();
outer:
while ( entries.hasMoreElements() )
{
JarEntry j = entries.nextElement();
if ( excludes != null && excludes.length > 0 )
{
for ( String exclude : excludes )
{
if ( SelectorUtils.match( exclude, j.getName() ) )
{
continue outer;
}
}
}
if ( StringUtils.equalsIgnoreCase( j.getName(), "META-INF/MANIFEST.MF" ) )
{
continue;
}
os.putArchiveEntry( new JarArchiveEntry( j.getName() ) );
IOUtils.copy( file.getInputStream( j ), os );
os.closeArchiveEntry();
}
if ( file != null )
{
file.close();
}
}
}
要在项目中修复此问题,您可以从源代码检出/修改/构建tomcat7-maven-plugin。如果你这样做,并且你成功地测试了它,那么如果你贡献一个补丁就会很棒。我已经为它提交了issue。