我试图将某些类排除在阴影罐中。
我尝试了几种不同的配置但由于某种原因,罐子仍然包含在我的罐子里。这是插件设置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>java/*</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
我也尝试了以下模式:
<exclude>java.*</exclude>
<exclude>java.util.concurrent.ConcurrentHashMap</exclude>
<exclude>java/util/concurrent/ConcurrentHashMap</exclude>
其中没有一个实际上从我的jar中排除了该文件。如何从我的jar中排除这个类?
答案 0 :(得分:1)
您只排除java文件夹中的顶级文件。您可以像这样递归排除:
<exclude>java/**/*</exclude>