43 lines
1.4 KiB
XML
43 lines
1.4 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">
|
|
<parent>
|
|
<groupId>com.qingyun</groupId>
|
|
<artifactId>qingyun-framework</artifactId>
|
|
<version>4.7.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>qingyun-swagger</artifactId>
|
|
<description>swagger</description>
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.qingyun</groupId>
|
|
<artifactId>qingyun-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-webmvc-core</artifactId>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.github.xiaoymin</groupId>-->
|
|
<!-- <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-javadoc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
</project>
|