pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <checkstyle.version>3.1.2</checkstyle.version>
  45. </properties>
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-api</artifactId>
  50. <version>${slf4j-api.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.logging.log4j</groupId>
  54. <artifactId>log4j-slf4j-impl</artifactId>
  55. <version>${log4j-slf4j-impl.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.junit.jupiter</groupId>
  59. <artifactId>junit-jupiter</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.testcontainers</groupId>
  63. <artifactId>testcontainers</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.testcontainers</groupId>
  67. <artifactId>junit-jupiter</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.assertj</groupId>
  71. <artifactId>assertj-core</artifactId>
  72. <version>${assertj-core.version}</version>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <version>${lombok.version}</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.fasterxml.jackson.core</groupId>
  83. <artifactId>jackson-annotations</artifactId>
  84. <version>${jackson.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.fasterxml.jackson.core</groupId>
  88. <artifactId>jackson-databind</artifactId>
  89. <version>${jackson.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.fasterxml.jackson.core</groupId>
  93. <artifactId>jackson-core</artifactId>
  94. <version>${jackson.version}</version>
  95. </dependency>
  96. </dependencies>
  97. <dependencyManagement>
  98. <dependencies>
  99. <dependency>
  100. <groupId>com.google.guava</groupId>
  101. <artifactId>guava</artifactId>
  102. <version>${guava.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.junit</groupId>
  106. <artifactId>junit-bom</artifactId>
  107. <version>${junit.version}</version>
  108. <scope>import</scope>
  109. <type>pom</type>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.testcontainers</groupId>
  113. <artifactId>testcontainers-bom</artifactId>
  114. <version>1.16.3</version>
  115. <scope>import</scope>
  116. <type>pom</type>
  117. </dependency>
  118. </dependencies>
  119. </dependencyManagement>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-surefire-plugin</artifactId>
  125. <version>2.22.2</version>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>