.flattened-pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.aivfo</groupId>
  7. <artifactId>aivfo-model-parent</artifactId>
  8. <version>1.2.0-SNAPSHOT</version>
  9. <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.aivfo</groupId>
  12. <artifactId>aivfo-dfs-client-spring-boot</artifactId>
  13. <version>1.2.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <modules>
  16. <module>aivfo-dfs-client-spring-boot-autoconfigure</module>
  17. <module>aivfo-dfs-client-spring-boot-core</module>
  18. <module>aivfo-dfs-client-spring-boot-starter</module>
  19. <module>aivfo-fast-dfs-client</module>
  20. </modules>
  21. <properties>
  22. <minio.client.version>8.4.3</minio.client.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.aivfo</groupId>
  28. <artifactId>aivfo-dfs-client-spring-boot-autoconfigure</artifactId>
  29. <version>${revision}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.aivfo</groupId>
  33. <artifactId>aivfo-dfs-client-spring-boot-core</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.aivfo</groupId>
  38. <artifactId>aivfo-fast-dfs-client</artifactId>
  39. <version>${revision}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.minio</groupId>
  43. <artifactId>minio</artifactId>
  44. <version>${minio.client.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.squareup.okhttp3</groupId>
  48. <artifactId>okhttp</artifactId>
  49. <version>4.11.0</version>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. </project>