pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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-dist</artifactId>
  27. <name>${project.artifactId}</name>
  28. <properties>
  29. <maven.deploy.skip>true</maven.deploy.skip>
  30. </properties>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-bom</artifactId>
  36. <version>${project.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.apache.dolphinscheduler</groupId>
  45. <artifactId>dolphinscheduler-server</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.dolphinscheduler</groupId>
  49. <artifactId>dolphinscheduler-standalone-server</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.dolphinscheduler</groupId>
  53. <artifactId>dolphinscheduler-api</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.dolphinscheduler</groupId>
  57. <artifactId>dolphinscheduler-alert-server</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.dolphinscheduler</groupId>
  61. <artifactId>dolphinscheduler-data-quality</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.dolphinscheduler</groupId>
  65. <artifactId>dolphinscheduler-ui</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.dolphinscheduler</groupId>
  69. <artifactId>dolphinscheduler-tools</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.dolphinscheduler</groupId>
  73. <artifactId>dolphinscheduler-python</artifactId>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <finalName>apache-dolphinscheduler-${project.version}</finalName>
  78. </build>
  79. <profiles>
  80. <profile>
  81. <id>release</id>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <artifactId>maven-assembly-plugin</artifactId>
  86. <executions>
  87. <execution>
  88. <id>dolphinscheduler-bin</id>
  89. <goals>
  90. <goal>single</goal>
  91. </goals>
  92. <phase>package</phase>
  93. <configuration>
  94. <descriptors>
  95. <descriptor>src/main/assembly/dolphinscheduler-bin.xml</descriptor>
  96. </descriptors>
  97. <appendAssemblyId>true</appendAssemblyId>
  98. </configuration>
  99. </execution>
  100. <execution>
  101. <id>src</id>
  102. <goals>
  103. <goal>single</goal>
  104. </goals>
  105. <phase>package</phase>
  106. <configuration>
  107. <descriptors>
  108. <descriptor>src/main/assembly/dolphinscheduler-src.xml</descriptor>
  109. </descriptors>
  110. <appendAssemblyId>true</appendAssemblyId>
  111. </configuration>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </profile>
  118. <profile>
  119. <id>python</id>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <artifactId>maven-assembly-plugin</artifactId>
  124. <executions>
  125. <execution>
  126. <id>python</id>
  127. <goals>
  128. <goal>single</goal>
  129. </goals>
  130. <phase>package</phase>
  131. <configuration>
  132. <!-- Make final directory with simple name `python`, and without any addtion information -->
  133. <finalName>python</finalName>
  134. <appendAssemblyId>false</appendAssemblyId>
  135. <descriptors>
  136. <descriptor>src/main/assembly/dolphinscheduler-python-api.xml</descriptor>
  137. </descriptors>
  138. </configuration>
  139. </execution>
  140. </executions>
  141. </plugin>
  142. </plugins>
  143. </build>
  144. </profile>
  145. </profiles>
  146. </project>