Skip to content

Commit 7c3d0fc

Browse files
CONNECT-2858: Fix javadoc encoding in envoy-api-java (#19)
* Bump protobuf library and grpc version * Update protobuf/grpc versions to the latest compatible * Update gradle tag to fix the build * Update build script to fail with a clear error if the tag exists already * Add a step to the flow to validate the tag version * Fetch the tags * Fix repo url * Bump tag * Add a gradle task to validate tag version * Update script * Remove obsolete directive * Update gradle.properties * Fix Javadoc encoding for generated proto sources
1 parent 32afd07 commit 7c3d0fc

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ tasks.withType(Jar).configureEach {
4242

4343
tasks.withType(Javadoc).configureEach {
4444
options.addStringOption('Xdoclint:none', '-quiet')
45+
options.encoding = 'UTF-8'
46+
options.charSet = 'UTF-8'
47+
options.docEncoding = 'UTF-8'
4548
}
4649

4750
def grpcVersion = '1.79.0'

0 commit comments

Comments
 (0)