Skip to content

Commit

Permalink
fixup! jpms for server module
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <[email protected]>
  • Loading branch information
sgammon committed Feb 22, 2024
1 parent 55336a5 commit d1c3e02
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pkl-core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,33 @@
pkl.cli,
pkl.commons.cli,
pkl.config.java,
pkl.doc;
pkl.doc,
pkl.server;
exports org.pkl.core.packages to
pkl.cli,
pkl.commons.cli,
pkl.config.java,
pkl.doc;
pkl.doc,
pkl.server;
exports org.pkl.core.project to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
pkl.config.java,
pkl.server;
exports org.pkl.core.repl to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
exports org.pkl.core.resource to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
pkl.config.java,
pkl.server;
exports org.pkl.core.runtime to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
pkl.config.java,
pkl.server;
exports org.pkl.core.stdlib.test.report to
pkl.cli,
pkl.commons.cli,
Expand All @@ -64,6 +69,8 @@
pkl.doc;
exports org.pkl.core.util.json to
pkl.doc;
exports org.pkl.core.ast.member to
pkl.server;
exports org.pkl.core.plugin;
exports org.pkl.core;

Expand Down
3 changes: 3 additions & 0 deletions pkl-server/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
/** Pkl: Server. */
module pkl.server {
requires java.base;
requires kotlin.stdlib;

requires pkl.core;

exports org.pkl.server;
}

0 comments on commit d1c3e02

Please sign in to comment.