Skip to content

Commit

Permalink
Add missing javadoc task to the junit module
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed Oct 3, 2019
1 parent 91b080d commit 5b5c931
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions junit-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ task sourcesJar(type: Jar) {
from sourceSets.main.allJava
}

task javadocJar(type: Jar) {
from javadoc
classifier = 'javadoc'
}

jar {
manifest {
attributes 'Automatic-Module-Name': 'reactor.blockhound.junit'
Expand All @@ -50,6 +55,7 @@ publishing {
mavenJava(MavenPublication) { publication ->
from components.java
artifact sourcesJar
artifact javadocJar

artifactId 'blockhound-junit-platform'
}
Expand Down

0 comments on commit 5b5c931

Please sign in to comment.