Skip to content

Commit 1649e6f

Browse files
authored
Merge pull request #10 from petebankhead/javadoc
Update for first release
2 parents be8f0a7 + a43517a commit 1649e6f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919

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

22-
version = "0.1.0-SNAPSHOT"
22+
version = "0.1.0"
2323

2424
dependencies {
2525
// These are included in QuPath distribution
@@ -71,11 +71,12 @@ jar {
7171
* Create javadocs for all modules/packages in one place.
7272
* Use -PstrictJavadoc=true to fail on error with doclint (which is rather strict).
7373
*/
74-
def strictJavadoc = findProperty('strictJavadoc')
75-
if (!strictJavadoc) {
76-
tasks.withType(Javadoc) {
74+
tasks.withType(Javadoc) {
75+
options.encoding = 'UTF-8'
76+
def strictJavadoc = findProperty('strictJavadoc')
77+
if (!strictJavadoc) {
7778
options.addStringOption('Xdoclint:none', '-quiet')
78-
}
79+
}
7980
}
8081

8182
/*

0 commit comments

Comments
 (0)