Skip to content

Commit

Permalink
Adding generation of jars for javadoc and sources
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaneg committed Feb 21, 2022
1 parent 8b577c0 commit 7662c5b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pylisa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ generateGrammarSource {
}
}

java {
withJavadocJar()
withSourcesJar()
}

javadoc {
if(JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}

spotless {
enforceCheck = false
encoding 'UTF-8'
Expand Down

0 comments on commit 7662c5b

Please sign in to comment.