112 lines
3.9 KiB
XML
112 lines
3.9 KiB
XML
<?xml version="1.0"?>
|
|
<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>
|
|
<modules>
|
|
<module>biz-vordm</module>
|
|
<!-- <module>kn-setting</module>-->
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>com.kening.platform</groupId>
|
|
<artifactId>kn-vordm</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>kn-service</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
<version>${revision}</version>
|
|
<packaging>pom</packaging>
|
|
<description>微服务集合</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hdrhistogram</groupId>
|
|
<artifactId>HdrHistogram</artifactId>
|
|
<version>2.1.12</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>3.25.0-GA</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.kening.platform</groupId>
|
|
<artifactId>kn-launcher</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springblade</groupId>
|
|
<artifactId>blade-core-boot</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.oracle</groupId>
|
|
<artifactId>ojdbc7</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>HdrHistogram</artifactId>
|
|
<groupId>org.hdrhistogram</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>javassist</artifactId>
|
|
<groupId>org.javassist</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>fastjson</artifactId>
|
|
<groupId>com.alibaba</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springblade</groupId>
|
|
<artifactId>blade-starter-oss</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>esdk-obs-java</artifactId>
|
|
<groupId>com.huaweicloud</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.minio</groupId>
|
|
<artifactId>minio</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-mock</artifactId>
|
|
<version>2.0.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springblade</groupId>
|
|
<artifactId>blade-starter-swagger</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springblade</groupId>
|
|
<artifactId>blade-starter-tenant</artifactId>
|
|
</dependency>
|
|
<!--邮件发送依赖-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
</dependency>
|
|
<!--thymeleaf-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|