Skip to content

Commit

Permalink
fixup! module build for pkl-commons-cli
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Feb 22, 2024
1 parent 23919f4 commit 69ed70c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkl-commons-cli/pkl-commons-cli.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ publishing {
}
}
}

tasks.javadoc {
enabled = false
}
2 changes: 2 additions & 0 deletions pkl-commons-cli/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
requires java.base;
requires kotlin.stdlib;

requires com.github.ajalt.clikt;

exports org.pkl.commons.cli;
exports org.pkl.commons.cli.commands;
}
11 changes: 11 additions & 0 deletions pkl-core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,39 @@

exports org.pkl.core.module to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
exports org.pkl.core.packages to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
exports org.pkl.core.project to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
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;
exports org.pkl.core.runtime to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
exports org.pkl.core.stdlib.test.report to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
exports org.pkl.core.util to
pkl.cli,
pkl.commons.cli,
pkl.config.java;
exports org.pkl.core.settings to
pkl.cli,
pkl.commons.cli;
exports org.pkl.core.plugin;
exports org.pkl.core;

Expand Down

0 comments on commit 69ed70c

Please sign in to comment.