pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-web-spring-boot</artifactId>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>aivfo-web-spring-boot-autoconfigure</module>
  16. <module>aivfo-web-spring-boot-core</module>
  17. <module>aivfo-web-spring-boot-starter</module>
  18. </modules>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.aivfo</groupId>
  23. <artifactId>aivfo-web-servlet</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aivfo</groupId>
  28. <artifactId>aivfo-web-reactive</artifactId>
  29. <version>${revision}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.aivfo</groupId>
  33. <artifactId>aivfo-web-common</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.aivfo</groupId>
  38. <artifactId>aivfo-web-spring-boot-autoconfigure</artifactId>
  39. <version>${revision}</version>
  40. </dependency>
  41. </dependencies>
  42. </dependencyManagement>
  43. </project>