| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.giantan.mds</groupId>
- <artifactId>mds</artifactId>
- <version>1.0.0</version>
- </parent>
- <groupId>com.giantan.gfs</groupId>
- <artifactId>gfs</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>2.0.17</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>2.0.17</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.15.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/software.amazon.awssdk/s3 -->
- <dependency>
- <groupId>software.amazon.awssdk</groupId>
- <artifactId>s3</artifactId>
- <!-- <version>2.20.162</version>-->
- <version>2.31.66</version>
- <exclusions>
- <!-- <exclusion>-->
- <!-- <groupId>org.slf4j</groupId>-->
- <!-- <artifactId>slf4j-simple</artifactId>-->
- <!-- </exclusion>-->
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>6.2.7</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.sevenzipjbinding</groupId>
- <artifactId>sevenzipjbinding</artifactId>
- <version>16.02-2.01</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.sf.sevenzipjbinding/sevenzipjbinding-all-platforms -->
- <dependency>
- <groupId>net.sf.sevenzipjbinding</groupId>
- <artifactId>sevenzipjbinding-all-platforms</artifactId>
- <version>16.02-2.01</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>1.23.0</version>
- </dependency>
- </dependencies>
- </project>
|