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.
175 lines
6.7 KiB
175 lines
6.7 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-api-test</artifactId> |
|
<packaging>pom</packaging> |
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<modules> |
|
<module>dolphinscheduler-api-test-core</module> |
|
<module>dolphinscheduler-api-test-case</module> |
|
</modules> |
|
|
|
<properties> |
|
<maven.compiler.source>8</maven.compiler.source> |
|
<maven.compiler.target>8</maven.compiler.target> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<junit.version>5.7.2</junit.version> |
|
<selenium.version>3.141.59</selenium.version> |
|
<lombok.version>1.18.24</lombok.version> |
|
<assertj-core.version>3.23.1</assertj-core.version> |
|
<awaitility.version>4.1.0</awaitility.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> |
|
<jackson.version>2.13.2</jackson.version> |
|
<checkstyle.version>3.1.2</checkstyle.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.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> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-annotations</artifactId> |
|
<version>${jackson.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>${jackson.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
<version>${jackson.version}</version> |
|
</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>1.16.3</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>2.22.2</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-checkstyle-plugin</artifactId> |
|
<version>${checkstyle.version}</version> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.puppycrawl.tools</groupId> |
|
<artifactId>checkstyle</artifactId> |
|
<version>8.45</version> |
|
</dependency> |
|
</dependencies> |
|
<configuration> |
|
<consoleOutput>true</consoleOutput> |
|
<encoding>UTF-8</encoding> |
|
<configLocation>../style/checkstyle.xml</configLocation> |
|
<failOnViolation>true</failOnViolation> |
|
<violationSeverity>warning</violationSeverity> |
|
<includeTestSourceDirectory>true</includeTestSourceDirectory> |
|
<sourceDirectories> |
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
|
</sourceDirectories> |
|
<excludes>**\/generated-sources\/</excludes> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>compile</phase> |
|
<goals> |
|
<goal>check</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|