pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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-dao</artifactId>
  27. <name>${project.artifactId}</name>
  28. <dependencies>
  29. <!-- dolphinscheduler -->
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-common</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-tomcat</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <artifactId>log4j-to-slf4j</artifactId>
  44. <groupId>org.apache.logging.log4j</groupId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.zaxxer</groupId>
  50. <artifactId>HikariCP</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>mybatis-plus-boot-starter</artifactId>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>org.apache.logging.log4j</groupId>
  62. <artifactId>log4j-to-slf4j</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.postgresql</groupId>
  68. <artifactId>postgresql</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>mysql</groupId>
  72. <artifactId>mysql-connector-java</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-annotations</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.fasterxml.jackson.core</groupId>
  80. <artifactId>jackson-databind</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-test</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.h2database</groupId>
  89. <artifactId>h2</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. </dependencies>
  93. <dependencyManagement>
  94. <dependencies>
  95. <dependency>
  96. <groupId>org.apache.dolphinscheduler</groupId>
  97. <artifactId>dolphinscheduler-bom</artifactId>
  98. <version>${project.version}</version>
  99. <type>pom</type>
  100. <scope>import</scope>
  101. </dependency>
  102. </dependencies>
  103. </dependencyManagement>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-jar-plugin</artifactId>
  109. <configuration>
  110. <excludes>
  111. <exclude>sql/</exclude>
  112. <exclude>*.yaml</exclude>
  113. </excludes>
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>