Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,8 @@ class BeamModulePlugin implements Plugin<Project> {
// Configures javadoc plugin and ensure check runs javadoc.
project.tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
options.docEncoding = 'UTF-8'
options.charSet = 'UTF-8'
options.addBooleanOption('Xdoclint:-missing', true)
}
project.check.dependsOn project.javadoc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you are using LLM, please check your changes manually both new commits and the generated reply. The unrelated changes are still present

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand Down Expand Up @@ -145,7 +145,7 @@ public static Builder builder() {
"What to do when there is no initial offset in Kafka or if the current offset"
+ " does not exist any more on the server. (1) earliest: automatically reset the offset to the earliest"
+ " offset. (2) latest: automatically reset the offset to the latest offset"
+ " (3) none: throw exception to the consumer if no previous offset is found for the consumers group")
+ " (3) none: throw exception to the consumer if no previous offset is found for the consumer's group")
@SchemaFieldNumber("7")
@Nullable
public abstract String getAutoOffsetResetConfig();
Expand Down
3 changes: 3 additions & 0 deletions sdks/java/javadoc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ task aggregateJavadoc(type: Javadoc) {
options.with {
title "Apache Beam " + project.version
overview 'overview.html'
encoding 'UTF-8'
docEncoding 'UTF-8'
charSet 'UTF-8'
for (dep in project.library.java.values()) {
links createJavadocIOUrlForDependency(dep)
}
Expand Down
Loading