我正在尝试使用 maven-remote-resources-plugin 在多模块 maven 项目中跨模块共享许多资源。不幸的是,共享的二进制资源在捆绑过程中被破坏了,大概是通过过滤。
我相信这个阶段正在发生损坏,因为从我的本地存储库中提取共享资源 jar 包含损坏的二进制文件。
有什么可以关闭 maven-remote-resources-plugin 的过滤吗?
目前我的共享资源模块中的 pom 看起来像
<build>
<plugins>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>**/*</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.3</version>
</dependency>
</dependencies>