You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
5.1 KiB
140 lines
5.1 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!-- |
|
~ Licensed to the Apache Software Foundation (ASF) under one or more |
|
~ contributor license agreements. See the NOTICE file distributed with |
|
~ this work for additional information regarding copyright ownership. |
|
~ The ASF licenses this file to You under the Apache License, Version 2.0 |
|
~ (the "License"); you may not use this file except in compliance with |
|
~ the License. You may obtain a copy of the License at |
|
~ |
|
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
~ |
|
~ Unless required by applicable law or agreed to in writing, software |
|
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
~ See the License for the specific language governing permissions and |
|
~ limitations under the License. |
|
--> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>org.apache.dolphinscheduler</groupId> |
|
<artifactId>dolphinscheduler-e2e</artifactId> |
|
<packaging>pom</packaging> |
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<modules> |
|
<module>dolphinscheduler-e2e-core</module> |
|
<module>dolphinscheduler-e2e-case</module> |
|
</modules> |
|
|
|
<properties> |
|
<maven.compiler.source>11</maven.compiler.source> |
|
<maven.compiler.target>11</maven.compiler.target> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<junit.version>5.8.1</junit.version> |
|
<selenium.version>4.21.0</selenium.version> |
|
<lombok.version>1.18.20</lombok.version> |
|
<assertj-core.version>3.20.2</assertj-core.version> |
|
<kotlin.version>1.5.30</kotlin.version> |
|
<slf4j-api.version>1.7.36</slf4j-api.version> |
|
<log4j-slf4j-impl.version>2.17.2</log4j-slf4j-impl.version> |
|
<guava.version>31.0.1-jre</guava.version> |
|
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
|
<testcontainers.version>1.19.8</testcontainers.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>${slf4j-api.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
<artifactId>log4j-slf4j-impl</artifactId> |
|
<version>${log4j-slf4j-impl.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.junit.jupiter</groupId> |
|
<artifactId>junit-jupiter</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>testcontainers</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>junit-jupiter</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>selenium</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.seleniumhq.selenium</groupId> |
|
<artifactId>selenium-chrome-driver</artifactId> |
|
<version>${selenium.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.seleniumhq.selenium</groupId> |
|
<artifactId>selenium-support</artifactId> |
|
<version>${selenium.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.assertj</groupId> |
|
<artifactId>assertj-core</artifactId> |
|
<version>${assertj-core.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>${lombok.version}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.google.guava</groupId> |
|
<artifactId>guava</artifactId> |
|
<version>${guava.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.junit</groupId> |
|
<artifactId>junit-bom</artifactId> |
|
<version>${junit.version}</version> |
|
<scope>import</scope> |
|
<type>pom</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>testcontainers-bom</artifactId> |
|
<version>${testcontainers.version}</version> |
|
<scope>import</scope> |
|
<type>pom</type> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>${maven-surefire-plugin.version}</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|