From d935fd13209fb33b90e350c1118f3dfe4e290fa6 Mon Sep 17 00:00:00 2001 From: Jark Wu Date: Tue, 4 Aug 2020 21:16:52 +0800 Subject: [PATCH] [build] Add DummyDocs to generate docs jar to pass OSS rule --- .../cdc/connectors/mysql/DummyDocs.java | 25 +++++++++++++++++++ .../cdc/connectors/postgres/DummyDocs.java | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 flink-sql-connector-mysql-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/mysql/DummyDocs.java create mode 100644 flink-sql-connector-postgres-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/postgres/DummyDocs.java diff --git a/flink-sql-connector-mysql-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/mysql/DummyDocs.java b/flink-sql-connector-mysql-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/mysql/DummyDocs.java new file mode 100644 index 000000000..2db19ac2c --- /dev/null +++ b/flink-sql-connector-mysql-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/mysql/DummyDocs.java @@ -0,0 +1,25 @@ +/* + * 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 + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.alibaba.ververica.cdc.connectors.mysql; + +/** + * This is used to generate a dummy docs jar for this module to pass OSS repository rule. + */ +public class DummyDocs { +} diff --git a/flink-sql-connector-postgres-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/postgres/DummyDocs.java b/flink-sql-connector-postgres-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/postgres/DummyDocs.java new file mode 100644 index 000000000..d3c2cf2d2 --- /dev/null +++ b/flink-sql-connector-postgres-cdc/src/main/java/com/alibaba/ververica/cdc/connectors/postgres/DummyDocs.java @@ -0,0 +1,25 @@ +/* + * 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 + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.alibaba.ververica.cdc.connectors.postgres; + +/** + * This is used to generate a dummy docs jar for this module to pass OSS repository rule. + */ +public class DummyDocs { +}