File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ repositories {
1919
2020description = ' Support for parsing the BioImage Model Zoo spec in Java'
2121
22- version = " 0.1.0-SNAPSHOT "
22+ version = " 0.1.0"
2323
2424dependencies {
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/*
You can’t perform that action at this time.
0 commit comments