pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.seaweedfs.s3</groupId>
  5. <artifactId>copier</artifactId>
  6. <packaging>jar</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>copier</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencyManagement>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.amazonaws</groupId>
  14. <artifactId>aws-java-sdk-bom</artifactId>
  15. <version>1.11.327</version>
  16. <type>pom</type>
  17. <scope>import</scope>
  18. </dependency>
  19. </dependencies>
  20. </dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.amazonaws</groupId>
  24. <artifactId>aws-java-sdk-s3</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.13.1</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. </project>