pom.xml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler</artifactId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-python</artifactId>
  27. <name>${project.artifactId}</name>
  28. <packaging>jar</packaging>
  29. <profiles>
  30. <profile>
  31. <id>release</id>
  32. <properties>
  33. <python.sign.skip>false</python.sign.skip>
  34. </properties>
  35. </profile>
  36. <profile>
  37. <id>python</id>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.codehaus.mojo</groupId>
  42. <artifactId>exec-maven-plugin</artifactId>
  43. <executions>
  44. <execution>
  45. <id>python-api-prepare</id>
  46. <phase>prepare-package</phase>
  47. <goals>
  48. <goal>exec</goal>
  49. </goals>
  50. <configuration>
  51. <executable>python</executable>
  52. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  53. <arguments>
  54. <argument>-m</argument>
  55. <argument>pip</argument>
  56. <argument>install</argument>
  57. <argument>--upgrade</argument>
  58. <argument>pip</argument>
  59. <argument>.[build]</argument>
  60. </arguments>
  61. </configuration>
  62. </execution>
  63. <execution>
  64. <id>python-api-clean</id>
  65. <phase>prepare-package</phase>
  66. <goals>
  67. <goal>exec</goal>
  68. </goals>
  69. <configuration>
  70. <executable>python</executable>
  71. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  72. <arguments>
  73. <argument>setup.py</argument>
  74. <argument>pre_clean</argument>
  75. </arguments>
  76. </configuration>
  77. </execution>
  78. <execution>
  79. <id>python-api-build</id>
  80. <phase>prepare-package</phase>
  81. <goals>
  82. <goal>exec</goal>
  83. </goals>
  84. <configuration>
  85. <executable>python</executable>
  86. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  87. <arguments>
  88. <argument>-m</argument>
  89. <argument>build</argument>
  90. </arguments>
  91. </configuration>
  92. </execution>
  93. <!-- Rename Python dist package to avoid confusion with dolphinscheduler main package -->
  94. <execution>
  95. <id>python-pkg-rename-tar</id>
  96. <phase>prepare-package</phase>
  97. <goals>
  98. <goal>exec</goal>
  99. </goals>
  100. <configuration>
  101. <executable>bash</executable>
  102. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  103. <arguments>
  104. <argument>-c</argument>
  105. <argument>mv dist/apache-dolphinscheduler-*.tar.gz dist/apache-dolphinscheduler-python-${project.version}.tar.gz</argument>
  106. </arguments>
  107. </configuration>
  108. </execution>
  109. <execution>
  110. <id>python-pkg-rename-whl</id>
  111. <phase>prepare-package</phase>
  112. <goals>
  113. <goal>exec</goal>
  114. </goals>
  115. <configuration>
  116. <executable>bash</executable>
  117. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  118. <arguments>
  119. <argument>-c</argument>
  120. <argument>mv dist/apache_dolphinscheduler-*py3-none-any.whl dist/apache_dolphinscheduler-python-${project.version}-py3-none-any.whl</argument>
  121. </arguments>
  122. </configuration>
  123. </execution>
  124. <execution>
  125. <id>sign-source</id>
  126. <phase>prepare-package</phase>
  127. <goals>
  128. <goal>exec</goal>
  129. </goals>
  130. <configuration>
  131. <skip>${python.sign.skip}</skip>
  132. <executable>bash</executable>
  133. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  134. <arguments>
  135. <argument>-c</argument>
  136. <!-- We use `bash -c` here cause plugin exec-maven-plugin do not support wildcard-->
  137. <argument>gpg --armor --detach-sign --digest-algo=SHA512 dist/*.tar.gz</argument>
  138. </arguments>
  139. </configuration>
  140. </execution>
  141. <execution>
  142. <id>sign-wheel</id>
  143. <phase>prepare-package</phase>
  144. <goals>
  145. <goal>exec</goal>
  146. </goals>
  147. <configuration>
  148. <skip>${python.sign.skip}</skip>
  149. <executable>bash</executable>
  150. <workingDirectory>${project.basedir}/pydolphinscheduler</workingDirectory>
  151. <arguments>
  152. <argument>-c</argument>
  153. <!-- We use `bash -c` here cause plugin exec-maven-plugin do not support wildcard-->
  154. <argument>gpg --armor --detach-sign --digest-algo=SHA512 dist/*.whl</argument>
  155. </arguments>
  156. </configuration>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </profile>
  163. </profiles>
  164. </project>