Skip to content

Commit

Permalink
#202 Added 'Automatic-Module-Name':'info.picocli' to MANIFEST.MF to m…
Browse files Browse the repository at this point in the history
…ake picocli play nice in the Java 9 module system.

Closes #202
  • Loading branch information
remkop committed Oct 11, 2017
1 parent 4668145 commit 1e75597
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ The following are the features that have been promoted in this picocli release.
- #195 Enhancement: Usage help should show Map types if paramLabel not specified
- #185 Enhancement: Exception message text for missing options should not use field names but be more descriptive and consistent with usage help. Thanks to [AlexFalappa](https://github.com/AlexFalappa).
- #183 Enhancement: Add examples to user manual for using picocli in other JVM languages. Thanks to [binkley](https://github.com/binkley) for pointing out that Kotlin may support array literals in annotations from 1.2.
- #202 Enhancement: Add 'Automatic-Module-Name':'info.picocli' to MANIFEST.MF to make picocli play nice in the Java 9 module system.

## Deprecations

Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jar {
attributes 'Implementation-Title' : 'picocli',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': version,
'Main-Class' : 'picocli.AutoComplete'
'Main-Class' : 'picocli.AutoComplete',
'Automatic-Module-Name' : 'info.picocli'
}
}
javadoc {
Expand Down

0 comments on commit 1e75597

Please sign in to comment.