You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by gy...@apache.org on 2022/03/28 10:46:37 UTC

[flink-kubernetes-operator] branch main updated: [hotfix] Disable flink-kubernetes-operator shade step on apache-release profile

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

gyfora 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 5e15d5b  [hotfix] Disable flink-kubernetes-operator shade step on apache-release profile
5e15d5b is described below

commit 5e15d5b463c0d1897e1d45aed1e84974b3840863
Author: Gyula Fora <g_...@apple.com>
AuthorDate: Mon Mar 28 11:34:19 2022 +0200

    [hotfix] Disable flink-kubernetes-operator shade step on apache-release profile
---
 flink-kubernetes-operator/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/flink-kubernetes-operator/pom.xml b/flink-kubernetes-operator/pom.xml
index f6efecb..0194c8d 100644
--- a/flink-kubernetes-operator/pom.xml
+++ b/flink-kubernetes-operator/pom.xml
@@ -295,6 +295,23 @@ under the License.
                 </plugins>
             </build>
         </profile>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-shade-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>shade-flink-operator</id>
+                                <phase>none</phase>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
     </profiles>
 
 </project>