HBASE-25367 Sort broken after Change 'State time' in UI (#2964)
[hbase.git] / hbase-logging / pom.xml
blobd48ffca322480402230a5b8453178485d2029fe5
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>log4j.properties</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>slf4j-log4j12</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>log4j</groupId>
88       <artifactId>log4j</artifactId>
89       <scope>provided</scope>
90     </dependency>
91   </dependencies>
92 </project>