2023-07-18 07:10:38 +08:00
|
|
|
<?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>
|
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>ruoyi-common-springdoc</artifactId>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
ruoyi-common-springdoc 文档工具
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-07-28 16:49:19 +08:00
|
|
|
<!-- springdoc -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
</dependency>
|
2023-07-18 07:10:38 +08:00
|
|
|
|
2023-07-28 16:49:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Runtime library -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.therapi</groupId>
|
|
|
|
<artifactId>therapi-runtime-javadoc</artifactId>
|
|
|
|
</dependency>
|
2023-07-18 07:10:38 +08:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|