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
3.0.0/version-upgrade
Jiajie Zhong 3 years ago committed by GitHub
parent
commit
3d78859fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      dolphinscheduler-dist/pom.xml
  2. 6
      dolphinscheduler-python/pom.xml
  3. 5
      dolphinscheduler-standalone-server/pom.xml

3
dolphinscheduler-dist/pom.xml vendored

@ -70,9 +70,6 @@
<profiles> <profiles>
<profile> <profile>
<id>release</id> <id>release</id>
<properties>
<python.sign.skip>false</python.sign.skip>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

6
dolphinscheduler-python/pom.xml

@ -29,6 +29,12 @@
<packaging>jar</packaging> <packaging>jar</packaging>
<profiles> <profiles>
<profile>
<id>release</id>
<properties>
<python.sign.skip>false</python.sign.skip>
</properties>
</profile>
<profile> <profile>
<id>python</id> <id>python</id>
<build> <build>

5
dolphinscheduler-standalone-server/pom.xml

@ -50,11 +50,6 @@
<artifactId>dolphinscheduler-log-server</artifactId> <artifactId>dolphinscheduler-log-server</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.apache.dolphinscheduler</groupId>
<artifactId>dolphinscheduler-python</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.apache.curator</groupId> <groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId> <artifactId>curator-test</artifactId>

Loading…
Cancel
Save