pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.giantan.mds</groupId>
  8. <artifactId>mds</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <groupId>com.giantan.gfs</groupId>
  12. <artifactId>gfs</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.slf4j</groupId>
  21. <artifactId>slf4j-api</artifactId>
  22. <version>2.0.17</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.slf4j</groupId>
  26. <artifactId>slf4j-simple</artifactId>
  27. <version>2.0.17</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  30. <dependency>
  31. <groupId>commons-io</groupId>
  32. <artifactId>commons-io</artifactId>
  33. <version>2.15.0</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/software.amazon.awssdk/s3 -->
  36. <dependency>
  37. <groupId>software.amazon.awssdk</groupId>
  38. <artifactId>s3</artifactId>
  39. <!-- <version>2.20.162</version>-->
  40. <version>2.31.66</version>
  41. <exclusions>
  42. <!-- <exclusion>-->
  43. <!-- <groupId>org.slf4j</groupId>-->
  44. <!-- <artifactId>slf4j-simple</artifactId>-->
  45. <!-- </exclusion>-->
  46. <exclusion>
  47. <groupId>commons-logging</groupId>
  48. <artifactId>commons-logging</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-web</artifactId>
  55. <version>6.2.7</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>net.sf.sevenzipjbinding</groupId>
  60. <artifactId>sevenzipjbinding</artifactId>
  61. <version>16.02-2.01</version>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/net.sf.sevenzipjbinding/sevenzipjbinding-all-platforms -->
  64. <dependency>
  65. <groupId>net.sf.sevenzipjbinding</groupId>
  66. <artifactId>sevenzipjbinding-all-platforms</artifactId>
  67. <version>16.02-2.01</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-compress</artifactId>
  73. <version>1.23.0</version>
  74. </dependency>
  75. </dependencies>
  76. </project>