This repository has been archived by the owner on Oct 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
/
pom.xml
82 lines (75 loc) · 2.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0"?>
<project xmlns="https://maven.apache.org/POM/4.0.0"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.twitter.hdfsdu</groupId>
<artifactId>hdfsdu</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<name>hdfsdu</name>
<url>https://github.com/twitter/hdfs-du</url>
<description>Visualize your HDFS cluster.</description>
<licenses>
<license>
<name>Apache License</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>@tc</id>
<name>Travis Crawford</name>
<email>[email protected]</email>
<organization>Twitter, Inc.</organization>
<organizationUrl>http://www.twitter.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>@philogb</id>
<name>Nicolas Belmonte</name>
<email>[email protected]</email>
<organization>Twitter, Inc.</organization>
<organizationUrl>http://www.twitter.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>@trebor</id>
<name>Robert Harris</name>
<email>[email protected]</email>
<organization>Twitter, Inc.</organization>
<organizationUrl>http://www.twitter.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<repositories>
<repository>
<id>twitter</id>
<url>https://maven.twttr.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>twitter</id>
<url>https://maven.twttr.com</url>
</pluginRepository>
</pluginRepositories>
<modules>
<module>pig</module>
<module>service</module>
</modules>
</project>