【新增】 maven添加依赖

This commit is contained in:
RENWEIBING\letre
2025-05-04 22:38:43 +08:00
parent 1a4fd9877b
commit ecdca2f3a3
3 changed files with 23 additions and 3 deletions

View File

@@ -27,12 +27,22 @@
<artifactId>exam-module-infra-api</artifactId>
<version>${revision}</version>
</dependency>
<!-- 业务组件 -->
<dependency>
<groupId>pc.exam.gg</groupId>
<artifactId>exam-spring-boot-starter-biz-tenant</artifactId>
</dependency>
<!-- office文件-->
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>5.2.0</version> <!-- 升级后的版本 -->
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>12.5</version>
</dependency>
<!-- Web 相关 -->
<dependency>
@@ -133,6 +143,12 @@
<version>2.4.2-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>pc.exam.gg</groupId>
<artifactId>exam-module-system-biz</artifactId>
<version>2.4.2-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

View File

@@ -266,7 +266,7 @@ exam:
topic: ${spring.application.name}-websocket # 消息发送的 Kafka Topic
consumer-group: ${spring.application.name}-websocket-consumer # 消息发送的 Kafka Consumer Group
swagger:
title: 芋道快速开发平台
title: 朋辰快速开发平台
description: 提供管理后台、用户 App 的所有功能
version: ${exam.info.version}
url: ${exam.web.admin-ui.url}

View File

@@ -151,7 +151,6 @@
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
@@ -168,6 +167,11 @@
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>maven-central</id>
<name>Maven Central Repository</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>
</project>