I am trying to use the maven-remote-resources-plugin to share a number of resources across modules in a multi module maven project. Unfortunately the shared binary resources are being corrupted during bundlling, presumably by filtering.
I am confident the corruption is happening at this stage as extracting the shared-resources jar from my local repository contains broken binary files.
Is there any to switch off filtering for maven-remote-resources-plugin?
At the moment the pom in my shared resources module looks like
<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>
maven-remote-resources-plugin? Posting relevant snippets from your pom.xml may help attract answers. – Duncan Jones Oct 2 '12 at 9:39