6

我正在尝试过滤我的 jar 中包含的资源。我正在使用 shade-maven-plugin,这个插件将我所有依赖项的所有资源添加到我生成的 jar 中,我只想包含我的项目资源。

这是我的 pom 定义:

    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>1.6</version>
            <executions>
                <execution>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                    <configuration>
                        <minimizeJar>true</minimizeJar>
                        <transformers>
                            <transformer
                                implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                <mainClass>es.app.applet.MyApplet</mainClass>
                            </transformer>
                        </transformers>
                    </configuration>
                </execution>
            </executions>
            <configuration>
                <filters>
                    <filter>
                        <artifact>*:*</artifact>
                        <excludes>
                            <exclude>META-INF/*.SF</exclude>
                            <exclude>META-INF/*.DSA</exclude>
                            <exclude>META-INF/*.RSA</exclude>
                            <exclude>META-INF/*.RSA</exclude>
                        </excludes>
                    </filter>
                </filters>
            </configuration>
        </plugin>

我尝试添加下一个过滤器以删除所有资源,然后添加另一个过滤器,仅添加我的 artifactID 资源,但它不起作用。

                    <filter>
                        <artifact>*:*</artifact>
                        <excludes>
                            <exclude>resources/*.*</exclude>
                        </excludes>
                    </filter> <filter>
                        <artifact>my.groupId:my.artifactId</artifact>
                        <includes>
                            <include>resources/*.*</include>
                        </includes>
                    </filter>

想法?

谢谢。

4

1 回答 1

2

这是因为过滤器包含发生在过滤器排除之前。

使用您的代码,您将包括您 "my.groupId:my.artifactId" -> resources/

但后来你排除了所有“资源/ ”

从原始文档

从逻辑的角度来看,包含在排除之前处理​​,因此可以使用包含从存档中收集一组文件,然后使用排除进一步减少该集合。

于 2015-02-05T15:18:04.510 回答