Skip to content

Commit 54ae832

Browse files
Marcelo Vanzinpwendell
authored andcommitted
Fix dep exclusion: avro-ipc, not avro, depends on netty.
Author: Marcelo Vanzin <[email protected]> Closes apache#763 from vanzin/netty-dep-hell and squashes the following commits: dfb6ce2 [Marcelo Vanzin] Fix dep exclusion: avro-ipc, not avro, depends on netty.
1 parent b22952f commit 54ae832

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -496,18 +496,16 @@
496496
<groupId>org.apache.avro</groupId>
497497
<artifactId>avro</artifactId>
498498
<version>${avro.version}</version>
499-
<exclusions>
500-
<exclusion>
501-
<groupId>io.netty</groupId>
502-
<artifactId>netty</artifactId>
503-
</exclusion>
504-
</exclusions>
505499
</dependency>
506500
<dependency>
507501
<groupId>org.apache.avro</groupId>
508502
<artifactId>avro-ipc</artifactId>
509503
<version>${avro.version}</version>
510504
<exclusions>
505+
<exclusion>
506+
<groupId>io.netty</groupId>
507+
<artifactId>netty</artifactId>
508+
</exclusion>
511509
<exclusion>
512510
<groupId>org.mortbay.jetty</groupId>
513511
<artifactId>jetty</artifactId>

0 commit comments

Comments
 (0)