pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>aivfo-model-parent</artifactId>
  7. <groupId>com.aivfo</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>aivfo-doc-spring-boot</artifactId>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>aivfo-doc-spring-boot-autoconfigure</module>
  16. <module>aivfo-doc-spring-boot-start</module>
  17. <module>aivfo-doc-spring-boot-core</module>
  18. </modules>
  19. <properties>
  20. <knife4j.version>3.0.3</knife4j.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.aivfo</groupId>
  26. <artifactId>aivfo-doc-spring-boot-autoconfigure</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.aivfo</groupId>
  31. <artifactId>aivfo-doc-spring-boot-core</artifactId>
  32. <version>${revision}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.xiaoymin</groupId>
  36. <artifactId>knife4j-spring-ui</artifactId>
  37. <version>${knife4j.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. </project>