This is an automated email from the ASF dual-hosted git repository. duhengforever pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/rocketmq-flink.git
commit 11e2e6d10145050c9703e14d64c0693bb1cb1735 Author: Xin Wang <[email protected]> AuthorDate: Thu Jun 7 15:40:10 2018 +0800 ISSUE-61: Added javadocs for RocketMQ-Flink (#63) * ISSUE-61: Added javadocs for RocketMQ-Flink and remove the generated javadoc files --- README.md | 1 - pom.xml | 10 ++++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ab1d456..600c57a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ RocketMQ integration for [Apache Flink](https://flink.apache.org/). This module includes the RocketMQ source and sink that allows a flink job to either write messages into a topic or read from topics in a flink job. - ## RocketMQSource To use the `RocketMQSource`, you construct an instance of it by specifying a KeyValueDeserializationSchema instance and a Properties instance which including rocketmq configs. `RocketMQSource(KeyValueDeserializationSchema<OUT> schema, Properties props)` diff --git a/pom.xml b/pom.xml index ecb3436..de824bd 100644 --- a/pom.xml +++ b/pom.xml @@ -169,6 +169,16 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.4</version> + <configuration> + <aggregate>true</aggregate> + <reportOutputDirectory>javadocs</reportOutputDirectory> + <locale>en</locale> + </configuration> + </plugin> </plugins> </build> </project> \ No newline at end of file
