diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-11-12 23:24:39 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-11-12 23:24:39 -0800 |
| commit | 559dfacdac0d3851541468b60b9046fe9d9f2b51 (patch) | |
| tree | b6dc8e8ea33b34c33059ecfa2796cccc5c1a2b06 /other/java/unzip/pom.xml | |
| parent | e6333da65ad6774d8c945bc29f686386e0515385 (diff) | |
| download | seaweedfs-559dfacdac0d3851541468b60b9046fe9d9f2b51.tar.xz seaweedfs-559dfacdac0d3851541468b60b9046fe9d9f2b51.zip | |
adding test example
Diffstat (limited to 'other/java/unzip/pom.xml')
| -rw-r--r-- | other/java/unzip/pom.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/other/java/unzip/pom.xml b/other/java/unzip/pom.xml new file mode 100644 index 000000000..1f86bb688 --- /dev/null +++ b/other/java/unzip/pom.xml @@ -0,0 +1,32 @@ +<?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> + + <groupId>org.example</groupId> + <artifactId>unzip</artifactId> + <version>1.0-SNAPSHOT</version> + <dependencies> + <dependency> + <groupId>com.github.chrislusf</groupId> + <artifactId>seaweedfs-client</artifactId> + <version>1.5.3</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>com.github.chrislusf</groupId> + <artifactId>seaweedfs-hadoop2-client</artifactId> + <version>1.5.3</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-common</artifactId> + <version>2.9.2</version> + <scope>compile</scope> + </dependency> + </dependencies> + + +</project>
\ No newline at end of file |
