mirror of
https://github.com/continew-org/continew-starter.git
synced 2025-10-21 20:57:15 +08:00

- 移除对Knife4j相关依赖和资源配置 - 新增NextDoc4j依赖及版本管理 - 重构BaseEnumParameterHandler以继承ModelResolver - 添加ObjectMapper注入支持枚举参数解析 - 调整资源处理器配置移除旧版静态资源配置 - 删除自定义OpenApiHandler及相关构建器配置 - 更新YAML配置文件启用NextDoc4j并移除Knife4j设置
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>top.continew.starter</groupId>
|
|
<artifactId>continew-starter</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>continew-starter-api-doc</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>ContiNew Starter API 文档模块</description>
|
|
|
|
<dependencies>
|
|
<!-- 核心模块 -->
|
|
<dependency>
|
|
<groupId>top.continew.starter</groupId>
|
|
<artifactId>continew-starter-core</artifactId>
|
|
</dependency>
|
|
|
|
<!--NextDoc4j (现代化 API 文档 UI 工具 全面替代 Swagger UI) -->
|
|
<dependency>
|
|
<groupId>top.nextdoc4j</groupId>
|
|
<artifactId>nextdoc4j-springboot3-starter</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |