pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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-standalone-server</artifactId>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.dolphinscheduler</groupId>
  31. <artifactId>dolphinscheduler-bom</artifactId>
  32. <version>${project.version}</version>
  33. <type>pom</type>
  34. <scope>import</scope>
  35. </dependency>
  36. </dependencies>
  37. </dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.apache.dolphinscheduler</groupId>
  41. <artifactId>dolphinscheduler-master</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.dolphinscheduler</groupId>
  45. <artifactId>dolphinscheduler-worker</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.dolphinscheduler</groupId>
  49. <artifactId>dolphinscheduler-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.dolphinscheduler</groupId>
  53. <artifactId>dolphinscheduler-alert-server</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.h2database</groupId>
  57. <artifactId>h2</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.curator</groupId>
  61. <artifactId>curator-test</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.javassist</groupId>
  65. <artifactId>javassist</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.cloud</groupId>
  71. <artifactId>spring-cloud-starter-kubernetes-fabric8-config</artifactId>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-jar-plugin</artifactId>
  79. <configuration>
  80. <excludes>
  81. <exclude>*.yaml</exclude>
  82. <exclude>*.xml</exclude>
  83. </excludes>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-assembly-plugin</artifactId>
  88. <executions>
  89. <execution>
  90. <id>dolphinscheduler-standalone-server</id>
  91. <goals>
  92. <goal>single</goal>
  93. </goals>
  94. <phase>package</phase>
  95. <configuration>
  96. <finalName>standalone-server</finalName>
  97. <descriptors>
  98. <descriptor>src/main/assembly/dolphinscheduler-standalone-server.xml</descriptor>
  99. </descriptors>
  100. <appendAssemblyId>false</appendAssemblyId>
  101. </configuration>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. <profiles>
  108. <profile>
  109. <id>docker</id>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.codehaus.mojo</groupId>
  114. <artifactId>exec-maven-plugin</artifactId>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </profile>
  119. </profiles>
  120. </project>