Skip to content

Commit

Permalink
Exclude com.sun.nio.* from the generated jar
Browse files Browse the repository at this point in the history
  • Loading branch information
normanmaurer committed Mar 30, 2012
1 parent 8e9058e commit a2701a9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions transport-sctp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit a2701a9

Please sign in to comment.