pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <packaging>pom</packaging>
  13. <modules>
  14. <module>aivfo-dfs-client-spring-boot-autoconfigure</module>
  15. <module>aivfo-dfs-client-spring-boot-core</module>
  16. <module>aivfo-dfs-client-spring-boot-starter</module>
  17. <module>aivfo-fast-dfs-client</module>
  18. </modules>
  19. <properties>
  20. <minio.client.version>8.4.3</minio.client.version>
  21. </properties>
  22. <artifactId>aivfo-dfs-client-spring-boot</artifactId>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.aivfo</groupId>
  27. <artifactId>aivfo-dfs-client-spring-boot-autoconfigure</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aivfo</groupId>
  32. <artifactId>aivfo-dfs-client-spring-boot-core</artifactId>
  33. <version>${revision}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.aivfo</groupId>
  37. <artifactId>aivfo-fast-dfs-client</artifactId>
  38. <version>${revision}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.minio</groupId>
  42. <artifactId>minio</artifactId>
  43. <version>${minio.client.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.squareup.okhttp3</groupId>
  47. <artifactId>okhttp</artifactId>
  48. <version>4.11.0</version>
  49. </dependency>
  50. </dependencies>
  51. </dependencyManagement>
  52. </project>