ref 脚手架集成方式由jar方式改为源码集成

This commit is contained in:
DaxPay
2024-05-09 15:09:55 +08:00
parent 8c0888273c
commit d2a73adebe
1006 changed files with 53485 additions and 46 deletions

View File

@@ -0,0 +1,119 @@
<?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>
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-platform</artifactId>
<version>1.3.6.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bootx-common-starters</artifactId>
<packaging>pom</packaging>
<modules>
<module>common-starter-auth</module>
<module>common-starter-quartz</module>
<module>common-starter-audit-log</module>
<module>common-starter-data-perm</module>
<module>common-starter-file</module>
<module>common-starter-code-gen</module>
<module>common-starter-dingtalk</module>
<module>common-starter-monitor</module>
<module>common-starter-wechat</module>
<module>common-starter-wecom</module>
</modules>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<scope>provided</scope>
</dependency>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- lombok 配合 mapstruct -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<scope>provided</scope>
</dependency>
<!-- 类型转换处理器 -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<scope>provided</scope>
</dependency>
<!-- 类型转换 -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</dependency>
<!-- 核心依赖 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-common-core</artifactId>
</dependency>
<!-- redis 客户端 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-redis-client</artifactId>
</dependency>
<!-- spring 工具包 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-spring</artifactId>
</dependency>
<!-- jackson 工具包 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-jackson</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- Sa-Token 权限认证, 在线文档http://sa-token.dev33.cn/ -->
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-spring-boot-starter</artifactId>
<version>${sa-token.version}</version>
</dependency>
<!-- justauth第三方登录 -->
<dependency>
<groupId>me.zhyd.oauth</groupId>
<artifactId>JustAuth</artifactId>
<version>${justauth.version}</version>
<exclusions>
<exclusion>
<artifactId>hutool-core</artifactId>
<groupId>cn.hutool</groupId>
</exclusion>
<exclusion>
<artifactId>fastjson</artifactId>
<groupId>com.alibaba</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
</project>