| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>aivfo-model-parent</artifactId>
- <groupId>com.aivfo</groupId>
- <version>${revision}</version>
- <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <modules>
- <module>aivfo-dfs-client-spring-boot-autoconfigure</module>
- <module>aivfo-dfs-client-spring-boot-core</module>
- <module>aivfo-dfs-client-spring-boot-starter</module>
- <module>aivfo-fast-dfs-client</module>
- </modules>
- <properties>
- <minio.client.version>8.4.3</minio.client.version>
- </properties>
- <artifactId>aivfo-dfs-client-spring-boot</artifactId>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-dfs-client-spring-boot-autoconfigure</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-dfs-client-spring-boot-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-fast-dfs-client</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>${minio.client.version}</version>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>4.11.0</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|