Skip to content

Commit

Permalink
[#1600] Add requires static java.sql to picocli module-info
Browse files Browse the repository at this point in the history
Closes #1600
  • Loading branch information
remkop committed Feb 24, 2022
1 parent 7a20f0f commit 5231db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Picocli 4.7.0 introduced a `sortSynopsis = false` attribute to let the synopsis

## <a name="4.7.0-fixes"></a> Fixed issues
* [#1599] API: The `picocli-codegen` artifact is now a named JPMS module with a `module-info.class`.
* [#1600] API: Add `requires static java.sql` to picocli `module-info`.
* [#1471] API: Provide a programmatic way to configure Picocli's `TraceLevel`. Thanks to [ekinano](https://github.com/ekinano) for raising this.
* [#1125] API: Add parser configuration to allow options to consume values that match subcommand names or option names.
* [#1396][#1401] API: Support generic types in containers (e.g. List, Map). Thanks to [Michał Górniewski](https://github.com/mgorniew) for the pull request.
Expand Down
1 change: 1 addition & 0 deletions src/main/java9/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@

module info.picocli {
exports picocli;
requires static java.sql;
}

0 comments on commit 5231db2

Please sign in to comment.