123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.taais</groupId>
- <artifactId>taais-common</artifactId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <artifactId>taais-common-springdoc</artifactId>
- <description>
- taais-common-springdoc 文档工具
- </description>
- <dependencies>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-core</artifactId>
- </dependency>
- <!-- springdoc -->
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
- </dependency>
- <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>
- </dependencies>
- </project>
|