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

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 3d78859fe5 [python] Recover python release properties (#9444)
3d78859fe5 is described below

commit 3d78859fe514c0374852a1a9ae94b2df7179951b
Author: Jiajie Zhong <[email protected]>
AuthorDate: Tue Apr 12 09:42:59 2022 +0800

    [python] Recover python release properties (#9444)
    
    This patch recovers the properties `python.sign.skip=false`
    when the combined profile `release,python` is used.
    
    also close: #9433
---
 dolphinscheduler-dist/pom.xml              | 3 ---
 dolphinscheduler-python/pom.xml            | 6 ++++++
 dolphinscheduler-standalone-server/pom.xml | 5 -----
 3 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/dolphinscheduler-dist/pom.xml b/dolphinscheduler-dist/pom.xml
index ddc2100ef9..0ec4ef7f06 100644
--- a/dolphinscheduler-dist/pom.xml
+++ b/dolphinscheduler-dist/pom.xml
@@ -70,9 +70,6 @@
     <profiles>
         <profile>
             <id>release</id>
-            <properties>
-                <python.sign.skip>false</python.sign.skip>
-            </properties>
             <build>
                 <plugins>
                     <plugin>
diff --git a/dolphinscheduler-python/pom.xml b/dolphinscheduler-python/pom.xml
index 10d8213f17..6088bf7ac7 100644
--- a/dolphinscheduler-python/pom.xml
+++ b/dolphinscheduler-python/pom.xml
@@ -29,6 +29,12 @@
     <packaging>jar</packaging>
 
     <profiles>
+        <profile>
+            <id>release</id>
+            <properties>
+                <python.sign.skip>false</python.sign.skip>
+            </properties>
+        </profile>
         <profile>
             <id>python</id>
             <build>
diff --git a/dolphinscheduler-standalone-server/pom.xml 
b/dolphinscheduler-standalone-server/pom.xml
index 9c8db2aa52..be34fee4dd 100644
--- a/dolphinscheduler-standalone-server/pom.xml
+++ b/dolphinscheduler-standalone-server/pom.xml
@@ -50,11 +50,6 @@
             <artifactId>dolphinscheduler-log-server</artifactId>
         </dependency>
 
-        <dependency>
-            <groupId>org.apache.dolphinscheduler</groupId>
-            <artifactId>dolphinscheduler-python</artifactId>
-        </dependency>
-
         <dependency>
             <groupId>org.apache.curator</groupId>
             <artifactId>curator-test</artifactId>

Reply via email to