Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude transitive dependencies of rarely used modules from netty-all #11786

Merged
merged 1 commit into from Oct 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions all/pom.xml
Expand Up @@ -250,6 +250,12 @@
<groupId>${project.groupId}</groupId>
<artifactId>netty-codec-xml</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.fasterxml</groupId>
<artifactId>aalto-xml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down Expand Up @@ -285,6 +291,12 @@
<groupId>${project.groupId}</groupId>
<artifactId>netty-transport-rxtx</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.rxtx</groupId>
<artifactId>rxtx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand All @@ -295,6 +307,12 @@
<groupId>${project.groupId}</groupId>
<artifactId>netty-transport-udt</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.barchart.udt</groupId>
<artifactId>barchart-udt-bundle</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--
Use no classifier for the native dependencies. The dependencies with the classifier are added by the
Expand Down