-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BEAM-475] Enable javadoc for all modules by default #1290
Conversation
@@ -73,7 +73,7 @@ | |||
* results, e.g. for 'team prizes'. We're now outputting window results as they're | |||
* calculated, giving us much lower latency than with the previous batch examples. | |||
* | |||
* <p>Run {@link injector.Injector} to generate pubsub data for this pipeline. The Injector |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
file JIRA: the injector is still referred to in some examples.
@@ -65,29 +65,6 @@ | |||
|
|||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-javadoc-plugin</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replaced by my open PR for javadoc aggregation.
|
||
<offlineLinks> | ||
<offlineLink> | ||
<url>https://developers.google.com/api-client-library/java/google-api-java-client/reference/1.20.0/</url> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: figure out where these connections go.
* | ||
* <p>Note that this coder standalone will not produce an Ism file. This coder can be used | ||
* to materialize a {@link PCollection} of {@link IsmRecord}s. Only when this coder | ||
* is combined with an {@link IsmSink} will one produce an Ism file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IsmSink is not in the Beam SDK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From what I can see, this is great!
Is there a reason why offlineLinks cannot be in the pluginManagement section of top-level pom.xml?
* PCollection<String> lines = ... ; | ||
* PCollection<String> words = | ||
* lines.apply(ParDo.of(new DoFn<String, String>() { | ||
* @ProcessElement | ||
* {@verbatim @}ProcessElement |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
literal? (here and elsewhere)
And fix several issues in several modules that were improperly tested before.
R: @davorbonaci