- 将文件服务API依赖从 infraapi 模块迁移到 fileapi 模块 - 在 pom.xml 中添加 tashow-file-api 依赖 - 更新 application-local.yaml 配置文件中的文件服务配置 - 修改 RpcConfiguration 配置类中的文件API引用路径 - 添加外部服务配置项包括文件服务URL和AI翻译服务URL
102 lines
3.5 KiB
XML
102 lines
3.5 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-module</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>tashow-module-ai</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<!-- Registry 注册中心相关 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Config 配置中心相关 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!--文件管理-->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-infra-api</artifactId>
|
|
</dependency>
|
|
<!--文件管理 - file-server-->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-file-api</artifactId>
|
|
</dependency>
|
|
<!-- RPC 远程调用相关 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-rpc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-data-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-env</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-websocket</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-data-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-data-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<!-- 监控相关 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-monitor</artifactId>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!-- 设置构建的 jar 包名 -->
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<!-- 打包 -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|