|
@@ -8,12 +8,8 @@
|
|
|
<version>${revision}</version>
|
|
<version>${revision}</version>
|
|
|
</parent>
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
- <modules>
|
|
|
|
|
- <module>yudao-module-member-api</module>
|
|
|
|
|
- <module>yudao-module-member-biz</module>
|
|
|
|
|
- </modules>
|
|
|
|
|
<artifactId>yudao-module-member</artifactId>
|
|
<artifactId>yudao-module-member</artifactId>
|
|
|
- <packaging>pom</packaging>
|
|
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
<name>${project.artifactId}</name>
|
|
|
<description>
|
|
<description>
|
|
@@ -21,4 +17,70 @@
|
|
|
例如说:会员中心等等
|
|
例如说:会员中心等等
|
|
|
</description>
|
|
</description>
|
|
|
|
|
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-module-system</artifactId>
|
|
|
|
|
+ <version>${revision}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-module-infra</artifactId>
|
|
|
|
|
+ <version>${revision}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 业务组件 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Web 相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- DB 相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-redis</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 消息队列相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-mq</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Test 测试相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 工具类相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-excel</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
+ <artifactId>yudao-spring-boot-starter-biz-ip</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+
|
|
|
</project>
|
|
</project>
|