pom.xml 5.2 KB

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