HBASE-24211: Create table is slow in large cluster when AccessController is enabled...
[hbase.git] / hbase-procedure / pom.xml
blob7f968a3e82f6c366ed06d30e740759442b3e8675
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" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <!--
4 /**
5  * Licensed to the Apache Software Foundation (ASF) under one
6  * or more contributor license agreements.  See the NOTICE file
7  * distributed with this work for additional information
8  * regarding copyright ownership.  The ASF licenses this file
9  * to you under the Apache License, Version 2.0 (the
10  * "License"); you may not use this file except in compliance
11  * with the License.  You may obtain a copy of the License at
12  *
13  *     http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 -->
22   <modelVersion>4.0.0</modelVersion>
23   <parent>
24     <artifactId>hbase-build-configuration</artifactId>
25     <groupId>org.apache.hbase</groupId>
26     <version>3.0.0-SNAPSHOT</version>
27     <relativePath>../hbase-build-configuration</relativePath>
28   </parent>
30   <artifactId>hbase-procedure</artifactId>
31   <name>Apache HBase - Procedure</name>
32   <description>Procedure Framework</description>
33 <!--REMOVE-->
35   <build>
36     <plugins>
37       <!-- Make a jar and put the sources in the jar -->
38       <plugin>
39         <groupId>org.apache.maven.plugins</groupId>
40         <artifactId>maven-source-plugin</artifactId>
41       </plugin>
42       <plugin>
43         <!--Make it so assembly:single does nothing in here-->
44         <artifactId>maven-assembly-plugin</artifactId>
45         <configuration>
46           <skipAssembly>true</skipAssembly>
47         </configuration>
48       </plugin>
49       <plugin>
50         <groupId>net.revelc.code</groupId>
51         <artifactId>warbucks-maven-plugin</artifactId>
52       </plugin>
53       <plugin>
54         <groupId>org.apache.maven.plugins</groupId>
55         <artifactId>maven-checkstyle-plugin</artifactId>
56         <configuration>
57           <failOnViolation>true</failOnViolation>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
63   <dependencies>
64     <dependency>
65       <groupId>org.apache.hbase</groupId>
66       <artifactId>hbase-common</artifactId>
67       <type>test-jar</type>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.apache.hbase</groupId>
72       <artifactId>hbase-annotations</artifactId>
73       <type>test-jar</type>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.apache.hbase.thirdparty</groupId>
78       <artifactId>hbase-shaded-protobuf</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.apache.hbase</groupId>
82       <artifactId>hbase-protocol-shaded</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.apache.hbase</groupId>
86       <artifactId>hbase-common</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.apache.hbase.thirdparty</groupId>
90       <artifactId>hbase-shaded-miscellaneous</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.slf4j</groupId>
94       <artifactId>slf4j-api</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>com.github.stephenc.findbugs</groupId>
98       <artifactId>findbugs-annotations</artifactId>
99       <scope>compile</scope>
100       <optional>true</optional>
101     </dependency>
102     <dependency>
103       <groupId>junit</groupId>
104       <artifactId>junit</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.apache.hbase</groupId>
109       <artifactId>hbase-metrics-api</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.mockito</groupId>
113       <artifactId>mockito-core</artifactId>
114       <scope>test</scope>
115     </dependency>
116   </dependencies>
118   <profiles>
119    <!-- Skip the tests in this module -->
120    <profile>
121       <id>skipProcedureTests</id>
122       <activation>
123         <property>
124           <name>skipProcedureTests</name>
125         </property>
126       </activation>
127       <properties>
128         <surefire.skipFirstPart>true</surefire.skipFirstPart>
129         <surefire.skipSecondPart>true</surefire.skipSecondPart>
130       </properties>
131     </profile>
132     <!-- Profiles for building against different hadoop versions -->
133     <!-- Profile for building against Hadoop 3.0.0. Activate by default -->
134     <profile>
135       <id>hadoop-3.0</id>
136       <activation>
137         <property><name>!hadoop.profile</name></property>
138       </activation>
139       <dependencies>
140         <dependency>
141           <groupId>org.apache.hadoop</groupId>
142           <artifactId>hadoop-common</artifactId>
143         </dependency>
144       </dependencies>
145     </profile>
146   </profiles>
147 </project>