This repository has been archived by the owner on Jul 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pom.xml
56 lines (50 loc) · 1.92 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?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>
<parent>
<groupId>com.ecfront</groupId>
<artifactId>ez-parent</artifactId>
<version>0.1.8</version>
</parent>
<artifactId>ez-fs</artifactId>
<name>EZ FS</name>
<description>文件操作模块</description>
<url>https://github.com/gudaoxuri/ez-fs</url>
<packaging>jar</packaging>
<version>1.0</version>
<scm>
<connection>scm:git:git@github.com:gudaoxuri/ez-fs.git</connection>
<developerConnection>scm:git:git@github.com:gudaoxuri/ez-fs.git</developerConnection>
<url>git@github.com:gudaoxuri/ez-fs.git</url>
</scm>
<properties>
<ez-common.version>0.6.8</ez-common.version>
<common-lang3.version>3.4</common-lang3.version>
<hadoop-client.version>2.7.2</hadoop-client.version>
<jsch.version>0.1.53</jsch.version>
</properties>
<dependencies>
<dependency>
<groupId>com.ecfront</groupId>
<artifactId>ez-common</artifactId>
<version>${ez-common.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${common-lang3.version}</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>${jsch.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop-client.version}</version>
</dependency>
</dependencies>
</project>