Skip to content

Commit b3d9878

Browse files
Marcelo Vanzinpwendell
authored andcommitted
Fix dep exclusion: avro-ipc, not avro, depends on netty.
Author: Marcelo Vanzin <[email protected]> Closes #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 7da80a3 commit b3d9878

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
@@ -495,18 +495,16 @@
495495
<groupId>org.apache.avro</groupId>
496496
<artifactId>avro</artifactId>
497497
<version>${avro.version}</version>
498-
<exclusions>
499-
<exclusion>
500-
<groupId>io.netty</groupId>
501-
<artifactId>netty</artifactId>
502-
</exclusion>
503-
</exclusions>
504498
</dependency>
505499
<dependency>
506500
<groupId>org.apache.avro</groupId>
507501
<artifactId>avro-ipc</artifactId>
508502
<version>${avro.version}</version>
509503
<exclusions>
504+
<exclusion>
505+
<groupId>io.netty</groupId>
506+
<artifactId>netty</artifactId>
507+
</exclusion>
510508
<exclusion>
511509
<groupId>org.mortbay.jetty</groupId>
512510
<artifactId>jetty</artifactId>

0 commit comments

Comments
 (0)