pom.xml 1.8 KB

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