pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-dependencies-parent</artifactId>
  7. <groupId>com.aivfo</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../aivfo-dependencies-parent/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>aivfo-project-build</artifactId>
  13. <properties>
  14. <springfox-boot-starter.version>3.0.0</springfox-boot-starter.version>
  15. </properties>
  16. <packaging>pom</packaging>
  17. <modules>
  18. <module>aivfo-model-parent</module>
  19. <module>aivfo-business-parent</module>
  20. </modules>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.aivfo</groupId>
  25. <artifactId>aivfo-dependencies-spring-boot-module</artifactId>
  26. <version>${revision}</version>
  27. <type>pom</type>
  28. <scope>import</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aivfo</groupId>
  32. <artifactId>aivfo-element-dependencies</artifactId>
  33. <version>${revision}</version>
  34. <type>pom</type>
  35. <scope>import</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.springfox</groupId>
  39. <artifactId>springfox-boot-starter</artifactId>
  40. <version>${springfox-boot-starter.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-web</artifactId>
  45. <version>5.2.16.RELEASE</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. </project>