Skip to content

Commit

Permalink
Re-apply PR #84
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElectronWill committed Aug 30, 2022
1 parent 1d67875 commit 5a65f05
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ configure(subprojects.findAll {it.name != "examples"}) {
test {
useJUnitPlatform()
}

jar {
manifest {
attributes "Automatic-Module-Name": "com.electronwill.nightconfig.$project.name"
}
}

task javadocJar(type: Jar, dependsOn: javadoc) {
archiveClassifier = 'javadoc'
Expand Down Expand Up @@ -119,4 +125,4 @@ configure(subprojects.findAll {it.name.contains("core")}) {
artifacts {
tests testJar
}
}
}

0 comments on commit 5a65f05

Please sign in to comment.