HBASE-25851 Make LoadBalancer not extend Configurable interface (#3233)
[hbase.git] / hbase-logging / pom.xml
blob8be692c1325ad6c0a341c4f74f4fc802acbbcf72
1 <?xml version="1.0"?>
2 <project xmlns="https://maven.apache.org/POM/4.0.0"
3   xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <!--
6 /**
7  * Licensed to the Apache Software Foundation (ASF) under one
8  * or more contributor license agreements.  See the NOTICE file
9  * distributed with this work for additional information
10  * regarding copyright ownership.  The ASF licenses this file
11  * to you under the Apache License, Version 2.0 (the
12  * "License"); you may not use this file except in compliance
13  * with the License.  You may obtain a copy of the License at
14  *
15  *     http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  */
23 -->
24   <modelVersion>4.0.0</modelVersion>
25   <parent>
26     <artifactId>hbase-build-configuration</artifactId>
27     <groupId>org.apache.hbase</groupId>
28     <version>3.0.0-SNAPSHOT</version>
29     <relativePath>../hbase-build-configuration</relativePath>
30   </parent>
32   <artifactId>hbase-logging</artifactId>
33   <name>Apache HBase - Logging</name>
34   <description>Logging Support for HBase</description>
36   <build>
37     <testResources>
38       <testResource>
39         <directory>src/test/resources</directory>
40         <includes>
41           <include>log4j2.xml</include>
42         </includes>
43       </testResource>
44     </testResources>
45     <plugins>
46       <plugin>
47         <!--Make it so assembly:single does nothing in here -->
48         <artifactId>maven-assembly-plugin</artifactId>
49         <configuration>
50           <skipAssembly>true</skipAssembly>
51         </configuration>
52       </plugin>
53       <!-- Make a jar and put the sources in the jar -->
54       <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-source-plugin</artifactId>
57       </plugin>
58       <plugin>
59         <groupId>net.revelc.code</groupId>
60         <artifactId>warbucks-maven-plugin</artifactId>
61       </plugin>
62     </plugins>
63   </build>
65   <dependencies>
66     <dependency>
67       <groupId>org.apache.hbase</groupId>
68       <artifactId>hbase-annotations</artifactId>
69       <type>test-jar</type>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.slf4j</groupId>
83       <artifactId>jcl-over-slf4j</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.slf4j</groupId>
88       <artifactId>jul-to-slf4j</artifactId>
89       <scope>provided</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.apache.logging.log4j</groupId>
93       <artifactId>log4j-api</artifactId>
94       <scope>provided</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.logging.log4j</groupId>
98       <artifactId>log4j-core</artifactId>
99       <scope>provided</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.apache.logging.log4j</groupId>
103       <artifactId>log4j-slf4j-impl</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.apache.logging.log4j</groupId>
108       <artifactId>log4j-1.2-api</artifactId>
109       <scope>test</scope>
110     </dependency>
111   </dependencies>
112 </project>