Skip to content

Commit

Permalink
Merge pull request #10 from petebankhead/javadoc
Browse files Browse the repository at this point in the history
Update for first release
  • Loading branch information
petebankhead authored Nov 30, 2022
2 parents be8f0a7 + a43517a commit 1649e6f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {

description = 'Support for parsing the BioImage Model Zoo spec in Java'

version = "0.1.0-SNAPSHOT"
version = "0.1.0"

dependencies {
// These are included in QuPath distribution
Expand Down Expand Up @@ -71,11 +71,12 @@ jar {
* Create javadocs for all modules/packages in one place.
* Use -PstrictJavadoc=true to fail on error with doclint (which is rather strict).
*/
def strictJavadoc = findProperty('strictJavadoc')
if (!strictJavadoc) {
tasks.withType(Javadoc) {
tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
def strictJavadoc = findProperty('strictJavadoc')
if (!strictJavadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}

/*
Expand Down

0 comments on commit 1649e6f

Please sign in to comment.