HBASE-26921 Rewrite the counting cells part in TestMultiVersions (#4316)
[hbase.git] / hbase-archetypes / hbase-shaded-client-project / pom.xml
blob0ede67b739c9a2a427357b04ea8f4e3b88f2e209
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="https://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation=
5            "https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
6   <!--
7 /**
8  * Licensed to the Apache Software Foundation (ASF) under one
9  * or more contributor license agreements.  See the NOTICE file
10  * distributed with this work for additional information
11  * regarding copyright ownership.  The ASF licenses this file
12  * to you under the Apache License, Version 2.0 (the
13  * "License"); you may not use this file except in compliance
14  * with the License.  You may obtain a copy of the License at
15  *
16  *     http://www.apache.org/licenses/LICENSE-2.0
17  *
18  * Unless required by applicable law or agreed to in writing, software
19  * distributed under the License is distributed on an "AS IS" BASIS,
20  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21  * See the License for the specific language governing permissions and
22  * limitations under the License.
23  */
24 -->
25   <modelVersion>4.0.0</modelVersion>
26   <parent>
27     <artifactId>hbase-archetypes</artifactId>
28     <groupId>org.apache.hbase</groupId>
29     <version>3.0.0-alpha-3-SNAPSHOT</version>
30     <relativePath>..</relativePath>
31   </parent>
32   <artifactId>hbase-shaded-client-project</artifactId>
33   <packaging>jar</packaging>
34   <name>Apache HBase - Exemplar for hbase-shaded-client archetype</name>
35   <description>Exemplar project for archetype with hbase-shaded-client dependency</description>
36   <properties>
37     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38     <maven.compiler.source>${compileSource}</maven.compiler.source>
39     <maven.compiler.target>${compileSource}</maven.compiler.target>
40   </properties>
41   <dependencies>
42     <!-- Dependency for hbase-testing-util must precede compile-scoped dependencies. -->
43     <dependency>
44       <groupId>org.apache.hbase</groupId>
45       <artifactId>hbase-testing-util</artifactId>
46       <scope>test</scope>
47        <exclusions>
48          <exclusion>
49            <groupId>javax.xml.bind</groupId>
50            <artifactId>jaxb-api</artifactId>
51          </exclusion>
52          <exclusion>
53            <groupId>javax.ws.rs</groupId>
54            <artifactId>jsr311-api</artifactId>
55          </exclusion>
56        </exclusions>
57     </dependency>
58     <dependency>
59       <groupId>org.apache.hbase</groupId>
60       <artifactId>hbase-shaded-client</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.slf4j</groupId>
64       <artifactId>jcl-over-slf4j</artifactId>
65       <scope>runtime</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.slf4j</groupId>
69       <artifactId>jul-to-slf4j</artifactId>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.apache.logging.log4j</groupId>
74       <artifactId>log4j-api</artifactId>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.apache.logging.log4j</groupId>
79       <artifactId>log4j-core</artifactId>
80       <scope>runtime</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.apache.logging.log4j</groupId>
84       <artifactId>log4j-slf4j-impl</artifactId>
85       <scope>runtime</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.apache.logging.log4j</groupId>
89       <artifactId>log4j-1.2-api</artifactId>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>junit</groupId>
94       <artifactId>junit</artifactId>
95       <scope>test</scope>
96     </dependency>
97   </dependencies>
98 </project>