Maven - maven-remote-resources-plugin - 资源在最终构建中结束

Maven - maven-remote-resources-plugin - resources end up in final build

我正在使用 maven-remote-resources-plugin 从另一个 JAR 导入资源:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-remote-resources-plugin</artifactId>
            <version>1.5</version>
            <configuration>
                <resourceBundles>
                    <resourceBundle>x:y:1.0.0-SNAPSHOT</resourceBundle>
                </resourceBundles>
            </configuration>
            <executions>
                <execution>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>process</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

如您所见,这是在 generate-sources 阶段完成的。我需要这些资源用于生成器,它在 target/generated-sources 中生成可编译源。这很好用。

不过,导入的资源现在也在最后WAR/JAR。这不是必需的。我只在编译期间需要这些资源,而不是在运行时。

有没有巧妙的方法在最终构建中排除这些导入的资源?

Maven Remote Resources Plugin的process goal属性有attachToMainattachToTest.

我想将它们设置为 false 也会将它们从打包中排除。