pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <parent>
  20. <artifactId>dolphinscheduler</artifactId>
  21. <groupId>org.apache.dolphinscheduler</groupId>
  22. <version>2.0.4-SNAPSHOT</version>
  23. </parent>
  24. <modelVersion>4.0.0</modelVersion>
  25. <artifactId>dolphinscheduler-dist</artifactId>
  26. <name>${project.artifactId}</name>
  27. <properties>
  28. <maven.deploy.skip>true</maven.deploy.skip>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.dolphinscheduler</groupId>
  33. <artifactId>dolphinscheduler-server</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.dolphinscheduler</groupId>
  37. <artifactId>dolphinscheduler-standalone-server</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.dolphinscheduler</groupId>
  41. <artifactId>dolphinscheduler-api</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.dolphinscheduler</groupId>
  45. <artifactId>dolphinscheduler-alert-server</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.dolphinscheduler</groupId>
  49. <artifactId>dolphinscheduler-data-quality</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.dolphinscheduler</groupId>
  53. <artifactId>dolphinscheduler-ui</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.dolphinscheduler</groupId>
  57. <artifactId>dolphinscheduler-tools</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <profiles>
  61. <profile>
  62. <id>release</id>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <artifactId>maven-assembly-plugin</artifactId>
  67. <executions>
  68. <execution>
  69. <id>dolphinscheduler-bin</id>
  70. <phase>package</phase>
  71. <goals>
  72. <goal>single</goal>
  73. </goals>
  74. <configuration>
  75. <descriptors>
  76. <descriptor>src/main/assembly/dolphinscheduler-bin.xml</descriptor>
  77. </descriptors>
  78. <appendAssemblyId>true</appendAssemblyId>
  79. </configuration>
  80. </execution>
  81. <execution>
  82. <id>src</id>
  83. <phase>package</phase>
  84. <goals>
  85. <goal>single</goal>
  86. </goals>
  87. <configuration>
  88. <descriptors>
  89. <descriptor>src/main/assembly/dolphinscheduler-src.xml</descriptor>
  90. </descriptors>
  91. <appendAssemblyId>true</appendAssemblyId>
  92. </configuration>
  93. </execution>
  94. <execution>
  95. <id>python</id>
  96. <phase>package</phase>
  97. <goals>
  98. <goal>single</goal>
  99. </goals>
  100. <configuration>
  101. <!-- Make final directory with simple name `python`, and without any addtion information -->
  102. <finalName>python</finalName>
  103. <appendAssemblyId>false</appendAssemblyId>
  104. <descriptors>
  105. <descriptor>src/main/assembly/dolphinscheduler-python-api.xml</descriptor>
  106. </descriptors>
  107. </configuration>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. </profile>
  114. </profiles>
  115. <build>
  116. <finalName>apache-dolphinscheduler-${project.version}</finalName>
  117. </build>
  118. </project>