| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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>aivfo-model-parent</artifactId>
- <groupId>com.aivfo</groupId>
- <version>${revision}</version>
- <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>aivfo-doc-spring-boot</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>aivfo-doc-spring-boot-autoconfigure</module>
- <module>aivfo-doc-spring-boot-start</module>
- <module>aivfo-doc-spring-boot-core</module>
- </modules>
- <properties>
- <knife4j.version>3.0.3</knife4j.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-doc-spring-boot-autoconfigure</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-doc-spring-boot-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-ui</artifactId>
- <version>${knife4j.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|