2023-11-28 20:33:38 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.bonus.sgzb</groupId>
|
|
|
|
|
<artifactId>sgzb-modules</artifactId>
|
|
|
|
|
<version>3.6.3</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>sgzb-modules-base</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
sgzb-modules-base基础管理
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot Actuator -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Swagger UI -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<version>${swagger.fox.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Mysql Connector -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- RuoYi Common DataSource -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.sgzb</groupId>
|
|
|
|
|
<artifactId>sgzb-common-datasource</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- RuoYi Common DataScope -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.sgzb</groupId>
|
|
|
|
|
<artifactId>sgzb-common-datascope</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- RuoYi Common Log -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.sgzb</groupId>
|
|
|
|
|
<artifactId>sgzb-common-log</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-11-30 20:15:53 +08:00
|
|
|
<!-- RuoYi Common Swagger -->
|
2023-11-28 20:33:38 +08:00
|
|
|
<!-- RuoYi Common Swagger -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.sgzb</groupId>
|
|
|
|
|
<artifactId>sgzb-common-swagger</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2023-11-30 20:15:53 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.sgzb</groupId>
|
|
|
|
|
<artifactId>sgzb-common-swagger</artifactId>
|
|
|
|
|
</dependency>
|
2023-12-08 09:51:56 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</dependency>
|
2023-12-13 19:29:50 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>5.8.18</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2024-07-29 13:07:01 +08:00
|
|
|
<!--加密依赖包-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
</dependency>
|
2024-01-10 09:03:26 +08:00
|
|
|
|
2023-11-28 20:33:38 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|