You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by mb...@apache.org on 2022/11/15 21:44:15 UTC

[flink-kubernetes-operator] branch main updated: [FLINK-29798][build] Exclude example modules from maven deploy phase

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

mbalassi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new 757a5079 [FLINK-29798][build] Exclude example modules from maven deploy phase
757a5079 is described below

commit 757a5079a50625de1c46ea5556cdd0766dc00361
Author: Márton Balassi <ma...@apple.com>
AuthorDate: Tue Nov 15 22:44:08 2022 +0100

    [FLINK-29798][build] Exclude example modules from maven deploy phase
---
 examples/flink-sql-runner-example/pom.xml   | 5 +++++
 examples/kubernetes-client-examples/pom.xml | 7 ++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/examples/flink-sql-runner-example/pom.xml b/examples/flink-sql-runner-example/pom.xml
index 32f95457..60002810 100644
--- a/examples/flink-sql-runner-example/pom.xml
+++ b/examples/flink-sql-runner-example/pom.xml
@@ -30,6 +30,11 @@ under the License.
 	<artifactId>flink-sql-runner-example</artifactId>
 	<name>Flink SQL Runner Example</name>
 
+	<!-- Given that this is an example skip maven deployment -->
+	<properties>
+		<maven.deploy.skip>true</maven.deploy.skip>
+	</properties>
+
 	<dependencies>
 		<!-- Apache Flink dependencies -->
 		<!-- These dependencies are provided, because they should not be packaged into the JAR file. -->
diff --git a/examples/kubernetes-client-examples/pom.xml b/examples/kubernetes-client-examples/pom.xml
index f38d6b47..0bb3f069 100644
--- a/examples/kubernetes-client-examples/pom.xml
+++ b/examples/kubernetes-client-examples/pom.xml
@@ -28,8 +28,13 @@ under the License.
         <relativePath>../..</relativePath>
     </parent>
 
+    <!-- Given that this is an example skip maven deployment -->
+    <properties>
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <artifactId>kubernetes-client-examples</artifactId>
-    <name>Flink Kubernetes client code Example</name>
+    <name>Flink Kubernetes Client Code Example</name>
 
     <dependencies>
         <dependency>