2020-03-02 21:50:25 +08:00
|
|
|
<?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>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-bom</artifactId>
|
2020-03-05 20:14:31 +08:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2020-03-02 21:50:25 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2020-03-05 20:14:31 +08:00
|
|
|
<ballcat.version>0.0.1-SNAPSHOT</ballcat.version>
|
2020-03-02 21:50:25 +08:00
|
|
|
|
2020-03-31 11:40:42 +08:00
|
|
|
<hutool.version>5.2.5</hutool.version>
|
|
|
|
|
<mybatis-plus.version>3.3.1</mybatis-plus.version>
|
2020-03-27 22:12:48 +08:00
|
|
|
<simple-cache.version>1.0.0</simple-cache.version>
|
2020-03-02 21:50:25 +08:00
|
|
|
<swagger.core.version>1.5.2</swagger.core.version>
|
2020-04-15 12:53:38 +08:00
|
|
|
<xxl-job.version>2.2.0</xxl-job.version>
|
2020-03-31 11:40:42 +08:00
|
|
|
<spring-boot-admin.version>2.2.2</spring-boot-admin.version>
|
2020-03-02 21:50:25 +08:00
|
|
|
<oss.aliyun.version>3.8.0</oss.aliyun.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-admin-core</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-conf</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-core</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-job</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-log</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-modules</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-swagger</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-storage</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-mail</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
2020-04-27 14:06:54 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-excel</artifactId>
|
|
|
|
|
<version>${ballcat.version}</version>
|
|
|
|
|
</dependency>
|
2020-03-02 21:50:25 +08:00
|
|
|
|
2020-03-28 00:07:50 +08:00
|
|
|
<!--缓存注解工具类-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>simple-cache</artifactId>
|
|
|
|
|
<version>${simple-cache.version}</version>
|
|
|
|
|
</dependency>
|
2020-03-02 21:50:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--swagger注解-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
<version>${swagger.core.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--xxl-job-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xuxueli</groupId>
|
|
|
|
|
<artifactId>xxl-job-core</artifactId>
|
|
|
|
|
<version>${xxl-job.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--mybatis plus extension,包含了mybatis plus core-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
|
</dependency>
|
2020-03-17 19:59:08 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-core</artifactId>
|
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
|
</dependency>
|
2020-03-02 21:50:25 +08:00
|
|
|
<!--mybatis-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--aliyun oss sdk-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
<version>${oss.aliyun.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--监控server端-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
|
|
|
|
<version>${spring-boot-admin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--监控Client-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
|
<version>${spring-boot-admin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--hutool工具类-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
</project>
|