Files
陈子默 9ef50288e9 feat: 搭建后端多租户名片服务
- 初始化 Spring Boot 多模块工程与通用基础能力

- 增加租户、组织、用户、名片、文件、统计等业务模块

- 补充数据库迁移脚本与基础测试
2026-03-20 12:43:21 +08:00

120 lines
3.7 KiB
XML

<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.easycard</groupId>
<artifactId>easycard-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>easycard-boot</artifactId>
<name>easycard-boot</name>
<dependencies>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-system</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-tenant</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-org</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-user</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-card</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-file</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.easycard</groupId>
<artifactId>easycard-module-stat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</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-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.easycard.boot.EasycardBootApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>