pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <groupId>space.anyi</groupId>
  7. <artifactId>S3_learn</artifactId>
  8. <version>1.0.0</version>
  9. <properties>
  10. <maven.compiler.source>17</maven.compiler.source>
  11. <maven.compiler.target>17</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <!-- Source: https://mvnrepository.com/artifact/software.amazon.awssdk/s3 -->
  15. <dependency>
  16. <groupId>software.amazon.awssdk</groupId>
  17. <artifactId>s3</artifactId>
  18. <version>2.25.27</version>
  19. </dependency>
  20. <!-- Source: https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  21. <dependency>
  22. <groupId>org.junit.jupiter</groupId>
  23. <artifactId>junit-jupiter-api</artifactId>
  24. <version>5.14.3</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <!-- Source: https://mvnrepository.com/artifact/org.mockito/mockito-core -->
  28. <dependency>
  29. <groupId>org.mockito</groupId>
  30. <artifactId>mockito-core</artifactId>
  31. <version>5.8.0</version>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. </project>