pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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-spi</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.dolphinscheduler</groupId>
  48. <artifactId>dolphinscheduler-common</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.dolphinscheduler</groupId>
  52. <artifactId>dolphinscheduler-server</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.dolphinscheduler</groupId>
  56. <artifactId>dolphinscheduler-meter</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.dolphinscheduler</groupId>
  60. <artifactId>dolphinscheduler-registry-all</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.dolphinscheduler</groupId>
  64. <artifactId>dolphinscheduler-task-all</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter</artifactId>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-tomcat</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>org.apache.logging.log4j</groupId>
  76. <artifactId>log4j-to-slf4j</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.codehaus.janino</groupId>
  82. <artifactId>janino</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.amazonaws</groupId>
  86. <artifactId>aws-java-sdk-s3</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.mockito</groupId>
  90. <artifactId>mockito-core</artifactId>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.dolphinscheduler</groupId>
  100. <artifactId>dolphinscheduler-log-server</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.cloud</groupId>
  104. <artifactId>spring-cloud-starter-kubernetes-fabric8-config</artifactId>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-jar-plugin</artifactId>
  112. <configuration>
  113. <excludes>
  114. <exclude>*.yaml</exclude>
  115. <exclude>*.xml</exclude>
  116. </excludes>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <artifactId>maven-assembly-plugin</artifactId>
  121. <executions>
  122. <execution>
  123. <id>dolphinscheduler-worker-server</id>
  124. <goals>
  125. <goal>single</goal>
  126. </goals>
  127. <phase>package</phase>
  128. <configuration>
  129. <finalName>worker-server</finalName>
  130. <descriptors>
  131. <descriptor>src/main/assembly/dolphinscheduler-worker-server.xml</descriptor>
  132. </descriptors>
  133. <appendAssemblyId>false</appendAssemblyId>
  134. </configuration>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. </plugins>
  139. </build>
  140. <profiles>
  141. <profile>
  142. <id>docker</id>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.codehaus.mojo</groupId>
  147. <artifactId>exec-maven-plugin</artifactId>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. </profile>
  152. </profiles>
  153. </project>