mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-02 20:40:38 +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-Title" to project.name,
|
||||||
"Implementation-Version" to project.version,
|
"Implementation-Version" to project.version,
|
||||||
"Main-Class" to application.mainClass.get(),
|
"Main-Class" to application.mainClass.get(),
|
||||||
"Automatic-Module-Name" to project.name,
|
"Automatic-Module-Name" to project.name.replace('-', '.'),
|
||||||
// Custom (non-standard) attribute
|
// Custom (non-standard) attribute
|
||||||
"Maven-Group" to project.group
|
"Maven-Group" to project.group
|
||||||
)
|
)
|
||||||
|
|
|
@ -38,7 +38,7 @@ tasks.withType<Jar> {
|
||||||
"Implementation-Title" to project.name,
|
"Implementation-Title" to project.name,
|
||||||
"Implementation-Version" to project.version,
|
"Implementation-Version" to project.version,
|
||||||
// use a more meaningful name than 'lib'
|
// use a more meaningful name than 'lib'
|
||||||
"Automatic-Module-Name" to "signal-lib",
|
"Automatic-Module-Name" to "signal.lib",
|
||||||
// Custom (non-standard) attribute
|
// Custom (non-standard) attribute
|
||||||
"Maven-Group" to project.group
|
"Maven-Group" to project.group
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue