194 lines
5.3 KiB
XML
194 lines
5.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.volvo.aicenter</groupId>
|
||
<artifactId>ai-analytic-center</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
</parent>
|
||
|
||
<artifactId>ai-analytic-center-biz</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
<name>ai-analytic-center-biz</name>
|
||
<description>ai project for Spring Boot</description>
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
<java.encoding>UTF-8</java.encoding>
|
||
</properties>
|
||
<dependencies>
|
||
<!--API依赖-->
|
||
<dependency>
|
||
<groupId>com.volvo.aicenter</groupId>
|
||
<artifactId>ai-analytic-center-api</artifactId>
|
||
<version>${ai-analytic-center-api}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<!--注册中心客户端-->
|
||
<!--<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>-->
|
||
<!--配置中心客户端-->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>2.9.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
<version>3.3.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-core</artifactId>
|
||
<version>3.3.3</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.powermock</groupId>
|
||
<artifactId>powermock-module-junit4</artifactId>
|
||
<scope>test</scope>
|
||
<version>2.0.9</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.powermock</groupId>
|
||
<artifactId>powermock-api-mockito2</artifactId>
|
||
<scope>test</scope>
|
||
<version>2.0.9</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.jacoco</groupId>
|
||
<artifactId>jacoco-maven-plugin</artifactId>
|
||
<version>0.8.7</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>commons-validator</artifactId>
|
||
<groupId>commons-validator</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
<version>4.9.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dom4j</groupId>
|
||
<artifactId>dom4j</artifactId>
|
||
<version>1.6.1</version>
|
||
</dependency>
|
||
|
||
<!-- skywalking -->
|
||
<dependency>
|
||
<groupId>org.apache.skywalking</groupId>
|
||
<artifactId>apm-toolkit-logback-1.x</artifactId>
|
||
<version>8.9.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.pagehelper</groupId>
|
||
<artifactId>pagehelper</artifactId>
|
||
<version>5.3.0</version>
|
||
</dependency>
|
||
|
||
<!--<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-amqp</artifactId>
|
||
</dependency>-->
|
||
|
||
<dependency>
|
||
<groupId>com.xuxueli</groupId>
|
||
<artifactId>xxl-job-core</artifactId>
|
||
<version>2.3.0</version>
|
||
</dependency>
|
||
<!--<dependency>
|
||
<groupId>com.clickhouse</groupId>
|
||
<artifactId>clickhouse-jdbc</artifactId>
|
||
<version>0.3.2</version>
|
||
</dependency>-->
|
||
<dependency>
|
||
<groupId>ru.yandex.clickhouse</groupId>
|
||
<artifactId>clickhouse-jdbc</artifactId>
|
||
<version>0.1.53</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.zaxxer</groupId>
|
||
<artifactId>HikariCP</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid-spring-boot-starter</artifactId>
|
||
<version>1.1.13</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.jacoco</groupId>
|
||
<artifactId>jacoco-maven-plugin</artifactId>
|
||
<version>0.8.7</version>
|
||
<configuration>
|
||
<!--指定生成.exec文件的存放位置-->
|
||
<destFile>target/coverage-reports/jacoco-unit.exec</destFile>
|
||
<!--Jacoco是根据.exec文件生成最终的报告,所以需指定.exec的存放路径-->
|
||
<dataFile>target/coverage-reports/jacoco-unit.exec</dataFile>
|
||
<includes>
|
||
<include>com/volvo/aicenter/**</include>
|
||
</includes>
|
||
<excludes>
|
||
<exclude>META-INF/**</exclude>
|
||
</excludes>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>jacoco-initialize</id>
|
||
<goals>
|
||
<goal>prepare-agent</goal>
|
||
</goals>
|
||
<phase>test-compile</phase>
|
||
</execution>
|
||
<execution>
|
||
<id>jacoco-site</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>report</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|