You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by es...@apache.org on 2022/04/29 21:10:51 UTC

[bahir-flink] branch master updated: [BAHIR-304] Fix release scripts

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

eskabetxe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 2b13682  [BAHIR-304] Fix release scripts
2b13682 is described below

commit 2b1368211cff1a3f1393d428f762f42117e4e09b
Author: Joao Boto <bo...@boto.pro>
AuthorDate: Fri Apr 29 22:51:12 2022 +0200

    [BAHIR-304] Fix release scripts
---
 dev/release-build.sh |  2 +-
 distribution/pom.xml | 15 +++++++++++++++
 pom.xml              | 14 --------------
 3 files changed, 16 insertions(+), 15 deletions(-)

diff --git a/dev/release-build.sh b/dev/release-build.sh
index 40b8a32..670433a 100755
--- a/dev/release-build.sh
+++ b/dev/release-build.sh
@@ -227,7 +227,7 @@ function checkout_code {
     mkdir target
     cd target
     rm -rf bahir-flink
-    git clone https://git-wip-us.apache.org/repos/asf/bahir-flink.git
+    git clone https://gitbox.apache.org/repos/asf/bahir-flink.git
     cd bahir-flink
     git checkout $GIT_REF
     git_hash=`git rev-parse --short HEAD`
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 89d21d5..efc3dfe 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -47,6 +47,21 @@
             <artifactId>flink-connector-flume_${scala.binary.version}</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.apache.bahir</groupId>
+            <artifactId>flink-connector-influxdb_${scala.binary.version}</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.bahir</groupId>
+            <artifactId>flink-connector-influxdb2_${scala.binary.version}</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.bahir</groupId>
+            <artifactId>flink-connector-kudu_${scala.binary.version}</artifactId>
+            <version>${project.version}</version>
+        </dependency>
         <dependency>
             <groupId>org.apache.bahir</groupId>
             <artifactId>flink-connector-netty_${scala.binary.version}</artifactId>
diff --git a/pom.xml b/pom.xml
index 3785b06..1a01875 100644
--- a/pom.xml
+++ b/pom.xml
@@ -461,20 +461,6 @@
                                     <requireJavaVersion>
                                         <version>${java.version}</version>
                                     </requireJavaVersion>
-                                    <bannedDependencies>
-                                        <excludes>
-                                            <!--
-                                              Akka depends on io.netty:netty, which puts classes under the org.jboss.netty
-                                              package. This conflicts with the classes in org.jboss.netty:netty
-                                              artifact, so we have to ban that artifact here. In Netty 4.x, the classes
-                                              are under the io.netty package, so it's fine for us to depend on both
-                                              io.netty:netty and io.netty:netty-all.
-                                            -->
-                                            <exclude>org.jboss.netty</exclude>
-                                            <exclude>org.codehaus.groovy</exclude>
-                                        </excludes>
-                                        <searchTransitive>true</searchTransitive>
-                                    </bannedDependencies>
                                 </rules>
                             </configuration>
                         </execution>