Skip to content

Commit

Permalink
chore: add Automatic-Module-Name to org.omegat.mnemonics
Browse files Browse the repository at this point in the history
  • Loading branch information
miurahr committed Jan 3, 2024
1 parent 3fdaf04 commit f108b03
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ sourceSets {

tasks.check.dependsOn(javadoc)

jar {
manifest {
attributes('Automatic-Module-Name': 'org.omegat.mnemonics')
}
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}

spotbugsMain {
reports {
html {
Expand Down Expand Up @@ -122,7 +129,3 @@ if (sonatypeUsername != null && sonatypePassword != null) {
tasks.sourcesJar {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}

tasks.jar {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}

0 comments on commit f108b03

Please sign in to comment.