マルチモジュールmavenプロジェクトのモジュール間で多数のリソースを共有するためにmaven-remote-resources-pluginを使用しようとしています。残念ながら、おそらくフィルタリングによって、バンドル中に共有バイナリ リソースが破損しています。
ローカル リポジトリから共有リソース 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>