forked from Alluxio/alluxio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
66 lines (58 loc) · 2.62 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
<!--
The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
(the "License"). You may not use this work except in compliance with the License, which is
available at www.apache.org/licenses/LICENSE-2.0
This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied, as more fully set forth in the License.
See the NOTICE file distributed with this work for information regarding copyright ownership.
-->
<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>
<artifactId>alluxio-parent</artifactId>
<groupId>org.alluxio</groupId>
<version>1.8.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-logserver</artifactId>
<packaging>jar</packaging>
<name>Alluxio Log Server</name>
<description>A logging server receiving log messages from Alluxio servers</description>
<properties>
<!-- The following paths need to be defined here as well as in the parent pom so that mvn can -->
<!-- run properly from sub-project directories -->
<license.header.path>${project.parent.basedir}/build/license/</license.header.path>
<checkstyle.path>${project.parent.basedir}/build/checkstyle/</checkstyle.path>
<findbugs.path>${project.parent.basedir}/build/findbugs/</findbugs.path>
<failIfNoTests>false</failIfNoTests>
</properties>
<dependencies>
<!-- External dependencies -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<!-- Internal dependencies -->
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-server-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>