还原初始模块

This commit is contained in:
2025-05-21 16:40:37 +08:00
parent bee2525c63
commit 179567564f
3 changed files with 23 additions and 5 deletions

View File

@@ -125,22 +125,22 @@
</dependency>
<dependency>
<groupId>com.tashow.cloud</groupId>
<artifactId>tashow-module-system-api</artifactId>
<artifactId>tashow-system-api</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.tashow.cloud</groupId>
<artifactId>tashow-module-system-biz</artifactId>
<artifactId>tashow-module-system</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.tashow.cloud</groupId>
<artifactId>tashow-module-infra-api</artifactId>
<artifactId>tashow-infra-api</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.tashow.cloud</groupId>
<artifactId>tashow-module-infra-biz</artifactId>
<artifactId>tashow-module-infra</artifactId>
<version>${revision}</version>
</dependency>
<dependency>

18
tashow-feign/pom.xml Normal file
View File

@@ -0,0 +1,18 @@
<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>com.tashow.cloud</groupId>
<artifactId>tashow-platform</artifactId>
<version>${revision}</version>
</parent>
<artifactId>tashow-feign</artifactId>
<packaging>pom</packaging>
<modules>
<module>tashow-infra-api</module>
<module>tashow-system-api</module>
</modules>
</project>

View File

@@ -43,7 +43,7 @@
<!-- 业务组件 -->
<dependency>
<groupId>com.tashow.cloud</groupId>
<artifactId>tashow-module-system-api</artifactId> <!-- 需要使用它,进行数据权限的获取 -->
<artifactId>tashow-system-api</artifactId> <!-- 需要使用它,进行数据权限的获取 -->
<version>${revision}</version>
</dependency>