You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/06/10 05:04:33 UTC

[incubator-seatunnel] branch api-draft updated: [api-draft][connector] Fix hive sink dist package in new connector. (#2001)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch api-draft
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/api-draft by this push:
     new 3e7d82bd [api-draft][connector] Fix hive sink dist package in new connector. (#2001)
3e7d82bd is described below

commit 3e7d82bd758419238573a6a3eecdd977b0c008cc
Author: Kerwin <37...@users.noreply.github.com>
AuthorDate: Fri Jun 10 13:04:27 2022 +0800

    [api-draft][connector] Fix hive sink dist package in new connector. (#2001)
    
    * Fix hive sink dist package in new connector.
    
    * restart ci
    
    * restart ci
    
    * restart ci
    
    * restart ci
    
    * merge api-draft branch
---
 seatunnel-connectors/plugin-mapping.properties     |  1 +
 .../seatunnel-connectors-seatunnel-dist/pom.xml    |  5 +++++
 .../seatunnel-connector-seatunnel-hive/pom.xml     | 23 +++++++++++++++++++---
 3 files changed, 26 insertions(+), 3 deletions(-)

diff --git a/seatunnel-connectors/plugin-mapping.properties b/seatunnel-connectors/plugin-mapping.properties
index 09e4e0de..e9cd9b86 100644
--- a/seatunnel-connectors/plugin-mapping.properties
+++ b/seatunnel-connectors/plugin-mapping.properties
@@ -89,3 +89,4 @@ seatunnel.source.FakeSource = seatunnel-connector-seatunnel-fake
 seatunnel.sink.Console = seatunnel-connector-seatunnel-console
 seatunnel.source.Kafka = seatunnel-connector-seatunnel-kafka
 seatunnel.sink.Kafka = seatunnel-connector-seatunnel-kafka
+seatunnel.sink.Hive = seatunnel-connector-seatunnel-hive
diff --git a/seatunnel-connectors/seatunnel-connectors-seatunnel-dist/pom.xml b/seatunnel-connectors/seatunnel-connectors-seatunnel-dist/pom.xml
index 4dab2703..e50ae874 100644
--- a/seatunnel-connectors/seatunnel-connectors-seatunnel-dist/pom.xml
+++ b/seatunnel-connectors/seatunnel-connectors-seatunnel-dist/pom.xml
@@ -45,6 +45,11 @@
             <artifactId>seatunnel-connector-seatunnel-kafka</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.apache.seatunnel</groupId>
+            <artifactId>seatunnel-connector-seatunnel-hive</artifactId>
+            <version>${project.version}</version>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/seatunnel-connectors/seatunnel-connectors-seatunnel/seatunnel-connector-seatunnel-hive/pom.xml b/seatunnel-connectors/seatunnel-connectors-seatunnel/seatunnel-connector-seatunnel-hive/pom.xml
index 2de900d1..30745c99 100644
--- a/seatunnel-connectors/seatunnel-connectors-seatunnel/seatunnel-connector-seatunnel-hive/pom.xml
+++ b/seatunnel-connectors/seatunnel-connectors-seatunnel/seatunnel-connector-seatunnel-hive/pom.xml
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    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.
+
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -9,7 +27,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>seatunnel-connectors-seatunnel-hive</artifactId>
+    <artifactId>seatunnel-connector-seatunnel-hive</artifactId>
 
     <dependencies>
         <dependency>
@@ -33,5 +51,4 @@
             <artifactId>junit</artifactId>
         </dependency>
     </dependencies>
-
-</project>
\ No newline at end of file
+</project>