pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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>org.example</groupId>
  7. <artifactId>unzip</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.github.chrislusf</groupId>
  12. <artifactId>seaweedfs-client</artifactId>
  13. <version>3.59</version>
  14. <scope>compile</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.github.chrislusf</groupId>
  18. <artifactId>seaweedfs-hadoop2-client</artifactId>
  19. <version>3.59</version>
  20. <scope>compile</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.hadoop</groupId>
  24. <artifactId>hadoop-common</artifactId>
  25. <version>2.10.2</version>
  26. <scope>compile</scope>
  27. </dependency>
  28. </dependencies>
  29. </project>