From 1c7125750b7f8205c263f6ec730357742b25d222 Mon Sep 17 00:00:00 2001 From: kashike Date: Sat, 27 Jan 2018 01:47:25 -0800 Subject: [PATCH] Provide an Automatic-Module-Name for the netty-all artifact fixes #7644 Motivation: The netty-all artifact doesn't have a Automatic-Module-Name defined in the manifest like the rest of the projects do, resulting in requires netty.all. Modification: Add Automatic-Module-Name Result: Correctly work as java9 module. --- README.md | 1 + all/pom.xml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index d45b41a917..5c4c4b5afd 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ Netty can be used in modular JDK9 applications as a collection of automatic modu reverse-DNS style, and are derived from subproject names rather than root packages due to historical reasons. They are listed below: + * `io.netty.all` * `io.netty.buffer` * `io.netty.codec` * `io.netty.codec.dns` diff --git a/all/pom.xml b/all/pom.xml index b43869d6ac..f3e897d9a2 100644 --- a/all/pom.xml +++ b/all/pom.xml @@ -664,6 +664,9 @@ true + + io.netty.all + true