|
@@ -2,218 +2,19 @@
|
|
|
<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>cn.iocoder.boot</groupId>
|
|
|
<artifactId>yudao</artifactId>
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
<version>${revision}</version>
|
|
|
</parent>
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <modules>
|
|
|
+ <module>yudao-common</module>
|
|
|
+ </modules>
|
|
|
|
|
|
<artifactId>yudao-framework</artifactId>
|
|
|
- <packaging>jar</packaging>
|
|
|
-
|
|
|
- <name>${artifactId}</name>
|
|
|
<description>基础框架,各种组件的拓展</description>
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
- <dependencies>
|
|
|
- <!-- Spring 核心 -->
|
|
|
- <dependency>
|
|
|
- <!-- 用于生成自定义的 Spring @ConfigurationProperties 配置类的说明文件 -->
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Web 相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-security</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-validation</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.xiaoymin</groupId>
|
|
|
- <artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
- <artifactId>swagger-annotations</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- DB 相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>5.1.46</version> <!-- TODO 强制版本 -->
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
- <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId> <!-- 多数据源 -->
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.redisson</groupId>
|
|
|
- <artifactId>redisson-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Config 配置中心相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.ctrip.framework.apollo</groupId>
|
|
|
- <artifactId>apollo-client</artifactId> <!-- 引入 Apollo Client 库,实现内嵌的配置中心 -->
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Job 定时任务相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 服务保障相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
- <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>io.github.resilience4j</groupId>
|
|
|
- <artifactId>resilience4j-spring-boot2</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 监控相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.skywalking</groupId>
|
|
|
- <artifactId>apm-toolkit-trace</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.skywalking</groupId>
|
|
|
- <artifactId>apm-toolkit-logback-1.x</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.skywalking</groupId>
|
|
|
- <artifactId>apm-toolkit-opentracing</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>de.codecentric</groupId>
|
|
|
- <artifactId>spring-boot-admin-starter-server</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>de.codecentric</groupId>
|
|
|
- <artifactId>spring-boot-admin-starter-client</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Test 测试相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <scope>provided</scope> <!-- 特殊,因为默认是 test 类型,会导致编译不通过,所以设置为 provided -->
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>com.h2database</groupId> <!-- 单元测试,我们采用 H2 作为数据库 -->
|
|
|
- <artifactId>h2</artifactId>
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.fppt</groupId> <!-- 单元测试,我们采用内嵌的 Redis 数据库 -->
|
|
|
- <artifactId>jedis-mock</artifactId>
|
|
|
- <scope>provided</scope> <!-- 特殊,因为默认是 test 类型,会导致编译不通过,所以设置为 provided -->
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>uk.co.jemos.podam</groupId> <!-- 单元测试,随机生成 POJO 类 -->
|
|
|
- <artifactId>podam</artifactId>
|
|
|
- <scope>provided</scope> <!-- 特殊,因为默认是 test 类型,会导致编译不通过,所以设置为 provided -->
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 工具类相关 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.mapstruct</groupId>
|
|
|
- <artifactId>mapstruct</artifactId> <!-- use mapstruct-jdk8 for Java 8 or higher -->
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mapstruct</groupId>
|
|
|
- <artifactId>mapstruct-jdk8</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mapstruct</groupId>
|
|
|
- <artifactId>mapstruct-processor</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>cn.hutool</groupId>
|
|
|
- <artifactId>hutool-all</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>easyexcel</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
- <artifactId>velocity-engine-core</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>cn.smallbun.screw</groupId>
|
|
|
- <artifactId>screw-core</artifactId> <!-- 实现数据库文档 -->
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 三方云服务相关 -->
|
|
|
-
|
|
|
- <!-- SMS SDK begin -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.yunpian.sdk</groupId>
|
|
|
- <artifactId>yunpian-java-sdk</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>com.aliyun</groupId>
|
|
|
- <artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.aliyun</groupId>
|
|
|
- <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- SMS SDK end -->
|
|
|
-
|
|
|
- </dependencies>
|
|
|
-
|
|
|
- <build>
|
|
|
- <!-- 设置构建的 jar 包名 -->
|
|
|
- <finalName>${artifactId}</finalName>
|
|
|
- </build>
|
|
|
</project>
|