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:42:35 UTC

[flink-kubernetes-operator] branch release-0.1 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 release-0.1
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git


The following commit(s) were added to refs/heads/release-0.1 by this push:
     new bf92301  [hotfix] Disable flink-kubernetes-operator shade step on apache-release profile
bf92301 is described below

commit bf9230131b1bc20f03831dca3eec236c86f746ac
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 94eff74..b7b35fb 100644
--- a/flink-kubernetes-operator/pom.xml
+++ b/flink-kubernetes-operator/pom.xml
@@ -294,6 +294,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>