Skip to content

Commit

Permalink
Fixed bootstrap's module-info
Browse files Browse the repository at this point in the history
- 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 <[email protected]>
  • Loading branch information
dmatej committed Oct 14, 2024
1 parent f463659 commit 4d7a173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nucleus/core/bootstrap/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4d7a173

Please sign in to comment.