Skip to content

Commit

Permalink
use valid module name in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny02 committed May 22, 2023
1 parent dbc59a4 commit a0a5a96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jar {
'Specification-Vendor': project.group,
'Specification-Title': project.name,
'Specification-Version': archiveVersion,
'Automatic-Module-Name': project.group + "." + project.name.replaceAll('-', '_')
'Automatic-Module-Name': (project.group + "." + project.name).replaceAll('-', '_')
}
}

Expand Down

0 comments on commit a0a5a96

Please sign in to comment.