HBASE-25373 Remove HTrace completely in code base and try to make use of OpenTelemetry
[hbase.git] / hbase-replication / pom.xml
blob7575fd176144f908731401c0607d578fe45321f5
1 <?xml version="1.0"?>
2 <project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <!--
5   /**
6    * Licensed to the Apache Software Foundation (ASF) under one
7    * or more contributor license agreements.  See the NOTICE file
8    * distributed with this work for additional information
9    * regarding copyright ownership.  The ASF licenses this file
10    * to you under the Apache License, Version 2.0 (the
11    * "License"); you may not use this file except in compliance
12    * with the License.  You may obtain a copy of the License at
13    *
14    *     http://www.apache.org/licenses/LICENSE-2.0
15    *
16    * Unless required by applicable law or agreed to in writing, software
17    * distributed under the License is distributed on an "AS IS" BASIS,
18    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19    * See the License for the specific language governing permissions and
20    * limitations under the License.
21    */
22   -->
23   <modelVersion>4.0.0</modelVersion>
24   <parent>
25     <artifactId>hbase-build-configuration</artifactId>
26     <groupId>org.apache.hbase</groupId>
27     <version>3.0.0-SNAPSHOT</version>
28     <relativePath>../hbase-build-configuration</relativePath>
29   </parent>
30   <artifactId>hbase-replication</artifactId>
31   <name>Apache HBase - Replication</name>
32   <description>HBase Replication Support</description>
34   <build>
35     <plugins>
36       <plugin>
37         <!--Make it so assembly:single does nothing in here-->
38         <artifactId>maven-assembly-plugin</artifactId>
39         <configuration>
40           <skipAssembly>true</skipAssembly>
41         </configuration>
42       </plugin>
43       <!-- Make a jar and put the sources in the jar -->
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-source-plugin</artifactId>
47       </plugin>
48       <plugin>
49         <groupId>org.apache.maven.plugins</groupId>
50         <artifactId>maven-checkstyle-plugin</artifactId>
51         <configuration>
52           <failOnViolation>true</failOnViolation>
53         </configuration>
54       </plugin>
55       <plugin>
56         <groupId>net.revelc.code</groupId>
57         <artifactId>warbucks-maven-plugin</artifactId>
58       </plugin>
59     </plugins>
60   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.apache.hbase.thirdparty</groupId>
65       <artifactId>hbase-shaded-miscellaneous</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.apache.hbase.thirdparty</groupId>
69       <artifactId>hbase-shaded-protobuf</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.apache.hbase</groupId>
73       <artifactId>hbase-annotations</artifactId>
74       <type>test-jar</type>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.apache.hbase</groupId>
79       <artifactId>hbase-logging</artifactId>
80       <type>test-jar</type>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.apache.hbase</groupId>
85       <artifactId>hbase-protocol-shaded</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.apache.hbase</groupId>
89       <artifactId>hbase-common</artifactId>
90     </dependency>
91     <!-- Intra-project dependencies -->
92     <dependency>
93       <groupId>org.apache.hbase</groupId>
94       <artifactId>hbase-client</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.hbase</groupId>
98       <artifactId>hbase-zookeeper</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.apache.hbase</groupId>
102       <artifactId>hbase-common</artifactId>
103       <type>test-jar</type>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.apache.hbase</groupId>
108       <artifactId>hbase-zookeeper</artifactId>
109       <type>test-jar</type>
110       <scope>test</scope>
111     </dependency>
112     <!-- General dependencies -->
113     <dependency>
114       <groupId>org.apache.commons</groupId>
115       <artifactId>commons-lang3</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.slf4j</groupId>
119       <artifactId>slf4j-api</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.apache.zookeeper</groupId>
123       <artifactId>zookeeper</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>junit</groupId>
127       <artifactId>junit</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.slf4j</groupId>
132       <artifactId>jcl-over-slf4j</artifactId>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.slf4j</groupId>
137       <artifactId>jul-to-slf4j</artifactId>
138       <scope>test</scope>
139     </dependency>
140     <dependency>
141       <groupId>org.apache.logging.log4j</groupId>
142       <artifactId>log4j-api</artifactId>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.apache.logging.log4j</groupId>
147       <artifactId>log4j-core</artifactId>
148       <scope>test</scope>
149     </dependency>
150     <dependency>
151       <groupId>org.apache.logging.log4j</groupId>
152       <artifactId>log4j-slf4j-impl</artifactId>
153       <scope>test</scope>
154     </dependency>
155   </dependencies>
157   <profiles>
158     <!-- Profile for building against Hadoop 3.0.0. Activate by default -->
159     <profile>
160       <id>hadoop-3.0</id>
161       <activation>
162         <property><name>!hadoop.profile</name></property>
163       </activation>
164       <properties>
165         <hadoop.version>${hadoop-three.version}</hadoop.version>
166       </properties>
167       <dependencies>
168         <dependency>
169           <groupId>org.apache.hadoop</groupId>
170           <artifactId>hadoop-common</artifactId>
171         </dependency>
172       </dependencies>
173     </profile>
174     <profile>
175       <id>eclipse-specific</id>
176       <activation>
177         <property>
178           <name>m2e.version</name>
179         </property>
180       </activation>
181       <build>
182         <pluginManagement>
183           <plugins>
184             <!--This plugin's configuration is used to store Eclipse m2e settings
185                  only. It has no influence on the Maven build itself.-->
186             <plugin>
187               <groupId>org.eclipse.m2e</groupId>
188               <artifactId>lifecycle-mapping</artifactId>
189               <configuration>
190                 <lifecycleMappingMetadata>
191                   <pluginExecutions>
192                   </pluginExecutions>
193                 </lifecycleMappingMetadata>
194               </configuration>
195             </plugin>
196           </plugins>
197         </pluginManagement>
198       </build>
199     </profile>
200   </profiles>
201 </project>