Skip to content

Commit

Permalink
GRAILS-6410: we now exclude Netty in the grails-bootstrap POM.
Browse files Browse the repository at this point in the history
  • Loading branch information
pledbrook committed Aug 17, 2010
1 parent 258d20c commit 3757920
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions maven/grails-bootstrap.pom.in
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,21 @@
<dependencies>
<!-- External Dependencies -->
<dependency>
<groupId>org.codehaus.gpars</groupId>
<artifactId>gpars</artifactId>
<version>0.9</version>
<groupId>org.codehaus.gpars</groupId>
<artifactId>gpars</artifactId>
<version>0.9</version>
<exclusions>
<!--
NOTE This exclusion is only required for GPars 0.9.
The 0.10 POM has it declared as optional, so we can
remove the exclusion when we upgrade to a new version
of GPars.
-->
<exclusion>
<groupId>org.jboss.netty</groupId>
<artifactId>netty</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit 3757920

Please sign in to comment.