Browse Source

[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 years ago
parent
commit
3d78859fe5

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