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">
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 <modelVersion>4.0.0</modelVersion>
24 <artifactId>hbase-build-configuration</artifactId>
25 <groupId>org.apache.hbase</groupId>
26 <version>2.4.5</version>
27 <relativePath>../hbase-build-configuration</relativePath>
30 <artifactId>hbase-metrics-api</artifactId>
31 <name>Apache HBase - Metrics API</name>
32 <description>HBase Metrics API descriptions</description>
36 <!-- Make a jar and put the sources in the jar -->
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-source-plugin</artifactId>
42 <!--Make it so assembly:single does nothing in here-->
43 <artifactId>maven-assembly-plugin</artifactId>
45 <skipAssembly>true</skipAssembly>
49 <artifactId>maven-surefire-plugin</artifactId>
50 <!-- Always skip the second part executions, since we only run simple unit tests in this module -->
53 <id>secondPartTestsExecution</id>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-checkstyle-plugin</artifactId>
68 <failOnViolation>true</failOnViolation>
72 <groupId>net.revelc.code</groupId>
73 <artifactId>warbucks-maven-plugin</artifactId>
79 <!-- Intra-project dependencies -->
81 <groupId>org.apache.hbase</groupId>
82 <artifactId>hbase-annotations</artifactId>
87 <groupId>org.apache.hbase</groupId>
88 <artifactId>hbase-logging</artifactId>
93 <groupId>org.apache.hbase</groupId>
94 <artifactId>hbase-common</artifactId>
97 <groupId>org.apache.hbase</groupId>
98 <artifactId>hbase-common</artifactId>
102 <!-- General dependencies -->
104 <groupId>org.slf4j</groupId>
105 <artifactId>slf4j-api</artifactId>
108 <groupId>org.apache.commons</groupId>
109 <artifactId>commons-lang3</artifactId>
112 <groupId>org.apache.hbase.thirdparty</groupId>
113 <artifactId>hbase-shaded-miscellaneous</artifactId>
116 <groupId>org.mockito</groupId>
117 <artifactId>mockito-core</artifactId>
121 <groupId>junit</groupId>
122 <artifactId>junit</artifactId>
126 <groupId>org.slf4j</groupId>
127 <artifactId>jcl-over-slf4j</artifactId>
131 <groupId>org.slf4j</groupId>
132 <artifactId>jul-to-slf4j</artifactId>
136 <groupId>org.slf4j</groupId>
137 <artifactId>slf4j-log4j12</artifactId>
141 <groupId>log4j</groupId>
142 <artifactId>log4j</artifactId>
148 <!-- Skip the tests in this module -->
150 <id>skipMetricsApiTests</id>
153 <name>skipMetricsApiTests</name>
157 <surefire.skipFirstPart>true</surefire.skipFirstPart>
158 <surefire.skipSecondPart>true</surefire.skipSecondPart>