pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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-tools</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-dao</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.dolphinscheduler</groupId>
  48. <artifactId>dolphinscheduler-aop</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>aopalliance</groupId>
  52. <artifactId>aopalliance</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>com.google.inject</groupId>
  56. <artifactId>guice</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>com.google.inject.extensions</groupId>
  60. <artifactId>guice-servlet</artifactId>
  61. </exclusion>
  62. <exclusion>
  63. <groupId>javax.inject</groupId>
  64. <artifactId>javax.inject</artifactId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>com.sun.xml.bind</groupId>
  68. <artifactId>jaxb-impl</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>com.sun.jersey.contribs</groupId>
  72. <artifactId>jersey-guice</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>com.sun.jersey</groupId>
  76. <artifactId>jersey-client</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>javax.ws.rs</groupId>
  80. <artifactId>jsr311-api</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>com.sun.jersey</groupId>
  84. <artifactId>jersey-core</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>com.sun.jersey</groupId>
  88. <artifactId>jersey-json</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>com.sun.jersey</groupId>
  92. <artifactId>jersey-server</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>org.codehaus.jackson</groupId>
  96. <artifactId>jackson-core-asl</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>org.codehaus.jackson</groupId>
  100. <artifactId>jackson-mapper-asl</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.codehaus.jackson</groupId>
  104. <artifactId>jackson-jaxrs</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>org.codehaus.jackson</groupId>
  108. <artifactId>jackson-xc</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-jar-plugin</artifactId>
  118. <configuration>
  119. <excludes>
  120. <exclude>*.yaml</exclude>
  121. </excludes>
  122. </configuration>
  123. </plugin>
  124. <plugin>
  125. <artifactId>maven-assembly-plugin</artifactId>
  126. <executions>
  127. <execution>
  128. <id>dolphinscheduler-tools</id>
  129. <goals>
  130. <goal>single</goal>
  131. </goals>
  132. <phase>package</phase>
  133. <configuration>
  134. <finalName>tools</finalName>
  135. <descriptors>
  136. <descriptor>src/main/assembly/dolphinscheduler-tools.xml</descriptor>
  137. </descriptors>
  138. <appendAssemblyId>false</appendAssemblyId>
  139. </configuration>
  140. </execution>
  141. </executions>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. <profiles>
  146. <profile>
  147. <id>docker</id>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.codehaus.mojo</groupId>
  152. <artifactId>exec-maven-plugin</artifactId>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </profile>
  157. </profiles>
  158. </project>