mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-04 13:10:39 +00:00
java 11 module can't contain '-'
This commit is contained in:
parent
e9deea7a33
commit
b5db40cb5f
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ tasks.withType<Jar> {
|
|||
"Implementation-Title" to project.name,
|
||||
"Implementation-Version" to project.version,
|
||||
"Main-Class" to application.mainClass.get(),
|
||||
"Automatic-Module-Name" to project.name,
|
||||
"Automatic-Module-Name" to project.name.replace('-', '.'),
|
||||
// Custom (non-standard) attribute
|
||||
"Maven-Group" to project.group
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue