Add Automatic-Module-Name for manager lib

This commit is contained in:
AsamK 2021-11-28 16:56:05 +01:00
parent 7e7e4150e1
commit f487af5b0c
2 changed files with 34 additions and 0 deletions

View file

@ -35,3 +35,9 @@ tasks.withType<AbstractArchiveTask>().configureEach {
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
tasks.jar {
manifest {
attributes("Automatic-Module-Name" to "org.asamk.signal.manager")
}
}