HBASE-24775 [hbtop] StoreFile size should be rounded off (#2144)
[hbase.git] / hbase-metrics / pom.xml
blob9c2bcc2de7d931668546c602b6ec831532706cf8
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-metrics</artifactId>
31   <name>Apache HBase - Metrics Implementation</name>
32   <description>HBase Metrics Implementation</description>
34   <build>
35     <plugins>
36       <!-- Make a jar and put the sources in the jar -->
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-source-plugin</artifactId>
40       </plugin>
41       <plugin>
42         <!--Make it so assembly:single does nothing in here-->
43         <artifactId>maven-assembly-plugin</artifactId>
44         <configuration>
45           <skipAssembly>true</skipAssembly>
46         </configuration>
47       </plugin>
48       <plugin>
49         <artifactId>maven-surefire-plugin</artifactId>
50         <!-- Always skip the second part executions, since we only run simple unit tests in this module -->
51         <executions>
52           <execution>
53             <id>secondPartTestsExecution</id>
54             <phase>test</phase>
55             <goals>
56               <goal>test</goal>
57             </goals>
58             <configuration>
59               <skip>true</skip>
60             </configuration>
61           </execution>
62         </executions>
63       </plugin>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-checkstyle-plugin</artifactId>
67         <configuration>
68           <failOnViolation>true</failOnViolation>
69         </configuration>
70       </plugin>
71       <plugin>
72         <groupId>net.revelc.code</groupId>
73         <artifactId>warbucks-maven-plugin</artifactId>
74       </plugin>
75     </plugins>
76   </build>
78   <dependencies>
79     <dependency>
80       <groupId>org.apache.hbase.thirdparty</groupId>
81       <artifactId>hbase-shaded-miscellaneous</artifactId>
82     </dependency>
83     <!-- Intra-project dependencies -->
84     <dependency>
85       <groupId>org.apache.hbase</groupId>
86       <artifactId>hbase-annotations</artifactId>
87       <type>test-jar</type>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.apache.hbase</groupId>
92       <artifactId>hbase-logging</artifactId>
93       <type>test-jar</type>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.hbase</groupId>
98       <artifactId>hbase-common</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       <!--mvn dependency:analyze says this is not used but we actually
108            implement Interfaces from api module here so it is 'wrong'-->
109       <groupId>org.apache.hbase</groupId>
110       <artifactId>hbase-metrics-api</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.apache.hbase</groupId>
114       <artifactId>hbase-metrics-api</artifactId>
115       <type>test-jar</type>
116       <scope>test</scope>
117     </dependency>
118     <!-- General dependencies -->
119     <dependency>
120       <groupId>io.dropwizard.metrics</groupId>
121       <artifactId>metrics-core</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>junit</groupId>
125       <artifactId>junit</artifactId>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.mockito</groupId>
130       <artifactId>mockito-core</artifactId>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.slf4j</groupId>
135       <artifactId>jcl-over-slf4j</artifactId>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.slf4j</groupId>
140       <artifactId>jul-to-slf4j</artifactId>
141       <scope>test</scope>
142     </dependency>
143     <dependency>
144       <groupId>org.slf4j</groupId>
145       <artifactId>slf4j-log4j12</artifactId>
146       <scope>test</scope>
147     </dependency>
148     <dependency>
149       <groupId>log4j</groupId>
150       <artifactId>log4j</artifactId>
151       <scope>test</scope>
152     </dependency>
153   </dependencies>
155   <profiles>
156     <!-- Skip the tests in this module -->
157     <profile>
158       <id>skipMetricsTests</id>
159       <activation>
160         <property>
161           <name>skipMetricsTests</name>
162         </property>
163       </activation>
164       <properties>
165         <surefire.skipFirstPart>true</surefire.skipFirstPart>
166         <surefire.skipSecondPart>true</surefire.skipSecondPart>
167       </properties>
168     </profile>
169   </profiles>
170 </project>