aboutsummaryrefslogtreecommitdiff
path: root/other/java/hdfs/pom.xml
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-11-25 18:01:57 -0800
committerChris Lu <chris.lu@gmail.com>2018-11-25 18:01:57 -0800
commitf970abf14aa38240677131c45c7b7c0d16a8a39e (patch)
treefa0be3528926ccac6546bf3c3615c1470a2970e9 /other/java/hdfs/pom.xml
parent6ecefad692dfd62873006ecb34932864cd746541 (diff)
downloadseaweedfs-f970abf14aa38240677131c45c7b7c0d16a8a39e.tar.xz
seaweedfs-f970abf14aa38240677131c45c7b7c0d16a8a39e.zip
WIP: adding SeaweedOutputStream for write
Diffstat (limited to 'other/java/hdfs/pom.xml')
-rw-r--r--other/java/hdfs/pom.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/other/java/hdfs/pom.xml b/other/java/hdfs/pom.xml
index 1fb554a19..c91fa2bfe 100644
--- a/other/java/hdfs/pom.xml
+++ b/other/java/hdfs/pom.xml
@@ -7,9 +7,21 @@
<groupId>seaweedfs</groupId>
<artifactId>hadoop-client</artifactId>
<version>1.0-SNAPSHOT</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>7</source>
+ <target>7</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<properties>
- <hadoop.version>2.2.0</hadoop.version>
+ <hadoop.version>3.1.1</hadoop.version>
</properties>
<dependencies>
@@ -23,6 +35,11 @@
<artifactId>client</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-common</artifactId>
+ <version>${hadoop.version}</version>
+ </dependency>
</dependencies>
</project>