pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. ~
  20. -->
  21. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  22. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  23. <modelVersion>4.0.0</modelVersion>
  24. <parent>
  25. <groupId>org.apache.dolphinscheduler</groupId>
  26. <artifactId>dolphinscheduler</artifactId>
  27. <version>dev-SNAPSHOT</version>
  28. </parent>
  29. <artifactId>dolphinscheduler-worker</artifactId>
  30. <dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.apache.dolphinscheduler</groupId>
  34. <artifactId>dolphinscheduler-bom</artifactId>
  35. <version>${project.version}</version>
  36. <type>pom</type>
  37. <scope>import</scope>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.apache.dolphinscheduler</groupId>
  44. <artifactId>dolphinscheduler-common</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.dolphinscheduler</groupId>
  48. <artifactId>dolphinscheduler-meter</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.dolphinscheduler</groupId>
  52. <artifactId>dolphinscheduler-registry-all</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.dolphinscheduler</groupId>
  56. <artifactId>dolphinscheduler-task-all</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.dolphinscheduler</groupId>
  60. <artifactId>dolphinscheduler-storage-all</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.dolphinscheduler</groupId>
  64. <artifactId>dolphinscheduler-extract-alert</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.dolphinscheduler</groupId>
  68. <artifactId>dolphinscheduler-extract-master</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.dolphinscheduler</groupId>
  72. <artifactId>dolphinscheduler-extract-worker</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-tomcat</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>org.apache.logging.log4j</groupId>
  84. <artifactId>log4j-to-slf4j</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.codehaus.janino</groupId>
  90. <artifactId>janino</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.amazonaws</groupId>
  94. <artifactId>aws-java-sdk-s3</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-test</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.cloud</groupId>
  103. <artifactId>spring-cloud-starter-kubernetes-client-config</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.zeroturnaround</groupId>
  107. <artifactId>zt-zip</artifactId>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-jar-plugin</artifactId>
  115. <configuration>
  116. <excludes>
  117. <exclude>*.yaml</exclude>
  118. <exclude>*.xml</exclude>
  119. </excludes>
  120. </configuration>
  121. </plugin>
  122. <plugin>
  123. <artifactId>maven-assembly-plugin</artifactId>
  124. <executions>
  125. <execution>
  126. <id>dolphinscheduler-worker-server</id>
  127. <goals>
  128. <goal>single</goal>
  129. </goals>
  130. <phase>package</phase>
  131. <configuration>
  132. <finalName>worker-server</finalName>
  133. <descriptors>
  134. <descriptor>src/main/assembly/dolphinscheduler-worker-server.xml</descriptor>
  135. </descriptors>
  136. <appendAssemblyId>false</appendAssemblyId>
  137. </configuration>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. <profiles>
  144. <profile>
  145. <id>docker</id>
  146. <build>
  147. <plugins>
  148. <plugin>
  149. <groupId>org.codehaus.mojo</groupId>
  150. <artifactId>exec-maven-plugin</artifactId>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </profile>
  155. </profiles>
  156. </project>