209 lines
8.0 KiB
XML
209 lines
8.0 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>hugegraph-computer</artifactId>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>computer-test</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- Jacoco report-aggregate just statistics its directly dependent module,
|
|
so must explicitly import each submodule -->
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-dist</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>hugegraph-common</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-api</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-core</artifactId>
|
|
<version>${revision}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>okhttp</artifactId>
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>okhttp</artifactId>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-algorithm</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-driver</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-yarn</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-k8s</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>computer-k8s-operator</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>3.8.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>mockwebserver</artifactId>
|
|
<version>4.12.0</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>junit</artifactId>
|
|
<groupId>junit</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>kubernetes-server-mock</artifactId>
|
|
<version>5.6.0</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>mockwebserver</artifactId>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.20</version>
|
|
<executions>
|
|
<execution>
|
|
<id>unit-test</id>
|
|
<configuration>
|
|
<testSourceDirectory>
|
|
${basedir}/src/main/java/
|
|
</testSourceDirectory>
|
|
<testClassesDirectory>
|
|
${basedir}/target/classes/
|
|
</testClassesDirectory>
|
|
<includes>
|
|
<include>**/UnitTestSuite.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>integrate-test</id>
|
|
<configuration>
|
|
<testSourceDirectory>
|
|
${basedir}/src/main/java/
|
|
</testSourceDirectory>
|
|
<testClassesDirectory>
|
|
${basedir}/target/classes/
|
|
</testClassesDirectory>
|
|
<includes>
|
|
<include>**/IntegrateTestSuite.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>0.8.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>pre-test</id>
|
|
<goals>
|
|
<goal>prepare-agent</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>post-test</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>report-aggregate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${basedir}/../target/site/jacoco</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources/</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|