Skip to content

Commit 1830464

Browse files
authored
Enforce UTF-8 as Javadoc encoding (#5738)
* Use com.gradle:common-custom-user-data-gradle-plugin:1.8 (instead of 1.8.0)
1 parent df5e1ee commit 1830464

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ subprojects {
4242
targetCompatibility = 1.8
4343
compileJava.options.encoding = 'UTF-8'
4444
compileTestJava.options.encoding = 'UTF-8'
45+
javadoc.options.encoding = 'UTF-8'
4546

4647
repositories {
4748
mavenCentral()

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
99
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.1"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.0"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8"
1111
}
1212
}
1313

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.1"
9-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.0"
9+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8"
1010
}
1111
}
1212

0 commit comments

Comments
 (0)