From 4d7a1731ed20fbee534c79a552f19dbca730daf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mat=C4=9Bj=C4=8Dek?= Date: Mon, 14 Oct 2024 19:59:17 +0200 Subject: [PATCH] Fixed bootstrap's module-info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - felix framework is supplied by other jpms modules which don't overlap osgi.core - logging annotations are used just by maven compiler plugin and they are not used in runtime. Signed-off-by: David Matějček --- nucleus/core/bootstrap/src/main/java/module-info.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nucleus/core/bootstrap/src/main/java/module-info.java b/nucleus/core/bootstrap/src/main/java/module-info.java index 8b5b5fc74f2..d97f4ba8049 100644 --- a/nucleus/core/bootstrap/src/main/java/module-info.java +++ b/nucleus/core/bootstrap/src/main/java/module-info.java @@ -22,8 +22,8 @@ requires java.base; requires java.logging; - requires org.apache.felix.framework; - requires org.glassfish.annotation.processing.logging; + requires static org.apache.felix.framework; + requires static org.glassfish.annotation.processing.logging; requires org.glassfish.main.jdke; exports com.sun.enterprise.glassfish.bootstrap.cfg;