You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>common-biz</artifactId>
- <groupId>org.dubhe.biz</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>file</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>Biz file 工具</name>
- <description>File util for Dubhe Server</description>
-
- <dependencies>
- <!-- Biz 通用配置 -->
- <dependency>
- <groupId>org.dubhe.biz</groupId>
- <artifactId>base</artifactId>
- <version>${org.dubhe.biz.base.version}</version>
- </dependency>
- <dependency>
- <groupId>org.dubhe.biz</groupId>
- <artifactId>log</artifactId>
- <version>${org.dubhe.biz.log.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- </dependency>
-
- <!-- io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <scope>compile</scope>
- </dependency>
- <!-- minio -->
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- </dependency>
- <!-- commons -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- </dependency>
- <!--spring2.0集成redis所需common-pool2-->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-pool2</artifactId>
- </dependency>
- <!-- NFS -->
- <dependency>
- <groupId>com.emc.ecs</groupId>
- <artifactId>nfs-client</artifactId>
- </dependency>
- <!--https://gitee.com/lionsoul/ip2region/tree/v1.4-release/-->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.1</version>
- </dependency>
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>7.0.2</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
-
- </plugins>
- </build>
- </project>
|