Exclude com.sun.nio.* from the generated jar

This commit is contained in:
Norman Maurer 2012-03-30 21:54:25 +02:00
parent 8e9058e921
commit a2701a9ae4

View File

@ -60,6 +60,16 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<!-- Exclude the com.sun.nio stuff as this is included in the jdk if its supported by the running os -->
<exclude>**/com/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>