160 lines
5.5 KiB
XML
160 lines
5.5 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.kening.platform</groupId>
|
||
|
<artifactId>kn-vordm</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>kn-sys-manager</artifactId>
|
||
|
<name>${project.artifactId}</name>
|
||
|
<version>${revision}</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>1.2.83</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.kening.platform</groupId>
|
||
|
<artifactId>kn-common</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.kening.platform</groupId>
|
||
|
<artifactId>kn-launcher</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-db</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-tenant</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-mybatis</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.javassist</groupId>
|
||
|
<artifactId>javassist</artifactId>
|
||
|
<version>3.25.0-GA</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.prometheus</groupId>
|
||
|
<artifactId>simpleclient</artifactId>
|
||
|
<version>0.9.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-cache</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-cloud</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>HdrHistogram</artifactId>
|
||
|
<groupId>org.hdrhistogram</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>javassist</artifactId>
|
||
|
<groupId>org.javassist</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>simpleclient</artifactId>
|
||
|
<groupId>io.prometheus</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hdrhistogram</groupId>
|
||
|
<artifactId>HdrHistogram</artifactId>
|
||
|
<version>2.1.12</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-metrics</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-redis</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>javassist</artifactId>
|
||
|
<groupId>org.javassist</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-swagger</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-security</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security.oauth</groupId>
|
||
|
<artifactId>spring-security-oauth2</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-jwt</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 验证码 -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.whvcse</groupId>
|
||
|
<artifactId>easy-captcha</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-boot</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 链路追踪、服务监控 -->
|
||
|
<!--<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-trace</artifactId>
|
||
|
</dependency>-->
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>com.spotify</groupId>
|
||
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<skip>${dockerfile.skip}</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|