Skip to content

Commit

Permalink
add javadoc to the deploy artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed May 19, 2018
1 parent 642bbba commit fef5fd0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ task generateSources() {
compileJava.dependsOn generateSources


javadoc {
options.addStringOption('Xdoclint:html', '-quiet')
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
Expand All @@ -76,7 +80,7 @@ task sourcesJar(type: Jar) {


artifacts {
archives sourcesJar
archives sourcesJar, javadocJar
}


Expand Down

0 comments on commit fef5fd0

Please sign in to comment.