Don't include netty-examples as dependency for netty-all (#11273)

Motivation:

We shouldn't include netty-examples as dependency for netty-all as this will try to pull in all sorts of dependencies which are optional.

Modifications:

Remove dependency on netty-examples

Result:

Related to https://github.com/netty/netty/issues/11272
This commit is contained in:
Norman Maurer 2021-05-18 11:44:30 +02:00 committed by GitHub
parent 3972bacd60
commit 72db32a801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -476,11 +476,6 @@
<artifactId>netty-transport-udt</artifactId> <artifactId>netty-transport-udt</artifactId>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-example</artifactId>
<scope>compile</scope>
</dependency>
</dependencies> </dependencies>
</project> </project>