84 lines
2.7 KiB
XML
84 lines
2.7 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.fate</groupId>
|
|
<artifactId>fate-fence</artifactId>
|
|
<version>3.6.3</version>
|
|
</parent>
|
|
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fance-menghang-common</artifactId>
|
|
|
|
<description>
|
|
公共模块
|
|
</description>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fate-common-core</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fate-common-redis</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>3.5.0</version>
|
|
</dependency>
|
|
<!-- fate Common DataSource -->
|
|
<dependency>
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fate-common-datasource</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
|
|
<!-- fate Common DataScope -->
|
|
<dependency>
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fate-common-datascope</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
|
|
<!-- fate Common Log -->
|
|
<dependency>
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fate-common-log</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
|
|
<!-- fate Common Swagger -->
|
|
<dependency>
|
|
<groupId>com.fate</groupId>
|
|
<artifactId>fate-common-swagger</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|