64 lines
2.2 KiB
XML
64 lines
2.2 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">
|
|
<parent>
|
|
<artifactId>ballcat-admin</artifactId>
|
|
<groupId>com.hccake</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ballcat-admin-core</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-common-conf</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-common-modules</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-common-log</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-common-storage</artifactId>
|
|
</dependency>
|
|
<!-- swagger 文档聚合 -->
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-common-swagger</artifactId>
|
|
</dependency>
|
|
<!-- swagger 增强版 ui -->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-ui</artifactId>
|
|
<version>1.9.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>2.9.2</version>
|
|
</dependency>
|
|
<!--mybatis plus-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
</dependency>
|
|
<!--redis-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
<!-- spring-security oauth -->
|
|
<dependency>
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
<artifactId>spring-security-oauth2</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |