| 1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-dfs-client-spring-boot</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- </parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-dfs-client-spring-boot-core</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-fast-dfs-client</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-core</artifactId>
- </dependency>
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-core</artifactId>
- </dependency>
- </dependencies>
- </project>
|