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