pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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"
  19. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  20. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21. <parent>
  22. <artifactId>dolphinscheduler</artifactId>
  23. <groupId>org.apache.dolphinscheduler</groupId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>dolphinscheduler-standalone-server</artifactId>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.dolphinscheduler</groupId>
  31. <artifactId>dolphinscheduler-master</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-worker</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.dolphinscheduler</groupId>
  39. <artifactId>dolphinscheduler-api</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.dolphinscheduler</groupId>
  43. <artifactId>dolphinscheduler-alert-server</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.dolphinscheduler</groupId>
  47. <artifactId>dolphinscheduler-log-server</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.h2database</groupId>
  51. <artifactId>h2</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.curator</groupId>
  55. <artifactId>curator-test</artifactId>
  56. <version>${curator.test}</version>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>org.javassist</groupId>
  60. <artifactId>javassist</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-jar-plugin</artifactId>
  70. <configuration>
  71. <excludes>
  72. <exclude>*.yaml</exclude>
  73. <exclude>*.xml</exclude>
  74. </excludes>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-assembly-plugin</artifactId>
  79. <executions>
  80. <execution>
  81. <id>dolphinscheduler-standalone-server</id>
  82. <phase>package</phase>
  83. <goals>
  84. <goal>single</goal>
  85. </goals>
  86. <configuration>
  87. <finalName>standalone-server</finalName>
  88. <descriptors>
  89. <descriptor>src/main/assembly/dolphinscheduler-standalone-server.xml</descriptor>
  90. </descriptors>
  91. <appendAssemblyId>false</appendAssemblyId>
  92. </configuration>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. <profiles>
  99. <profile>
  100. <id>docker</id>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.codehaus.mojo</groupId>
  105. <artifactId>exec-maven-plugin</artifactId>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </profile>
  110. </profiles>
  111. </project>