Skip to content
Snippets Groups Projects
Commit c29919bb authored by dgelessus's avatar dgelessus
Browse files

Add automatic module names to jar manifests

parent 974f5aa2
No related branches found
No related tags found
No related merge requests found
Pipeline #39897 failed
......@@ -38,7 +38,10 @@ processResources {
jar {
manifest {
attributes 'Main-Class': mainClassName
attributes([
'Main-Class': mainClassName,
'Automatic-Module-Name': 'org.sablecc.sablecc',
])
}
}
......
......@@ -10,6 +10,14 @@ java {
withJavadocJar()
}
jar {
manifest {
attributes([
"Automatic-Module-Name": "de.hhu.stups.sablecc.patch",
])
}
}
publishing {
publications {
mavenJava(MavenPublication) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment