pom.xml 4.8 KB

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