浏览代码

[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
Jiajie Zhong 3 年之前
父节点
当前提交
3d78859fe5
共有 3 个文件被更改,包括 6 次插入8 次删除
  1. 0 3
      dolphinscheduler-dist/pom.xml
  2. 6 0
      dolphinscheduler-python/pom.xml
  3. 0 5
      dolphinscheduler-standalone-server/pom.xml

+ 0 - 3
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>

+ 6 - 0
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>

+ 0 - 5
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>