pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. <modelVersion>4.0.0</modelVersion>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler-api-test</artifactId>
  24. <packaging>pom</packaging>
  25. <version>1.0-SNAPSHOT</version>
  26. <modules>
  27. <module>dolphinscheduler-api-test-core</module>
  28. <module>dolphinscheduler-api-test-case</module>
  29. </modules>
  30. <properties>
  31. <maven.compiler.source>8</maven.compiler.source>
  32. <maven.compiler.target>8</maven.compiler.target>
  33. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  34. <junit.version>5.7.2</junit.version>
  35. <selenium.version>3.141.59</selenium.version>
  36. <lombok.version>1.18.24</lombok.version>
  37. <assertj-core.version>3.23.1</assertj-core.version>
  38. <awaitility.version>4.1.0</awaitility.version>
  39. <kotlin.version>1.5.30</kotlin.version>
  40. <slf4j-api.version>1.7.36</slf4j-api.version>
  41. <log4j-slf4j-impl.version>2.17.2</log4j-slf4j-impl.version>
  42. <guava.version>31.0.1-jre</guava.version>
  43. <jackson.version>2.13.2</jackson.version>
  44. </properties>
  45. <dependencies>
  46. <dependency>
  47. <groupId>org.slf4j</groupId>
  48. <artifactId>slf4j-api</artifactId>
  49. <version>${slf4j-api.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.logging.log4j</groupId>
  53. <artifactId>log4j-slf4j-impl</artifactId>
  54. <version>${log4j-slf4j-impl.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.junit.jupiter</groupId>
  58. <artifactId>junit-jupiter</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.testcontainers</groupId>
  62. <artifactId>testcontainers</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.testcontainers</groupId>
  66. <artifactId>junit-jupiter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.assertj</groupId>
  70. <artifactId>assertj-core</artifactId>
  71. <version>${assertj-core.version}</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. <version>${lombok.version}</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.fasterxml.jackson.core</groupId>
  82. <artifactId>jackson-annotations</artifactId>
  83. <version>${jackson.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.fasterxml.jackson.core</groupId>
  87. <artifactId>jackson-databind</artifactId>
  88. <version>${jackson.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.fasterxml.jackson.core</groupId>
  92. <artifactId>jackson-core</artifactId>
  93. <version>${jackson.version}</version>
  94. </dependency>
  95. </dependencies>
  96. <dependencyManagement>
  97. <dependencies>
  98. <dependency>
  99. <groupId>com.google.guava</groupId>
  100. <artifactId>guava</artifactId>
  101. <version>${guava.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.junit</groupId>
  105. <artifactId>junit-bom</artifactId>
  106. <version>${junit.version}</version>
  107. <scope>import</scope>
  108. <type>pom</type>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.testcontainers</groupId>
  112. <artifactId>testcontainers-bom</artifactId>
  113. <version>1.16.3</version>
  114. <scope>import</scope>
  115. <type>pom</type>
  116. </dependency>
  117. </dependencies>
  118. </dependencyManagement>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-surefire-plugin</artifactId>
  124. <version>2.22.2</version>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>