HBASE-16241 Allow specification of annotations to use when running check_compatibility.sh
[hbase.git] / hbase-checkstyle / pom.xml
blobe8542f472a32d8ca1e0ab4eb92d495750fcaeba7
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <!--
6 /**
7 * Licensed to the Apache Software Foundation (ASF) under one
8 * or more contributor license agreements.  See the NOTICE file
9 * distributed with this work for additional information
10 * regarding copyright ownership.  The ASF licenses this file
11 * to you under the Apache License, Version 2.0 (the
12 * "License"); you may not use this file except in compliance
13 * with the License.  You may obtain a copy of the License at
15 *     http://www.apache.org/licenses/LICENSE-2.0
17 * Unless required by applicable law or agreed to in writing, software
18 * distributed under the License is distributed on an "AS IS" BASIS,
19 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 * See the License for the specific language governing permissions and
21 * limitations under the License.
23 -->
24 <modelVersion>4.0.0</modelVersion>
25 <groupId>org.apache.hbase</groupId>
26 <artifactId>hbase-checkstyle</artifactId>
27 <version>2.0.0-SNAPSHOT</version>
28 <name>Apache HBase - Checkstyle</name>
29 <description>Module to hold Checkstyle properties for HBase.</description>
31   <parent>
32     <artifactId>hbase</artifactId>
33     <groupId>org.apache.hbase</groupId>
34     <version>2.0.0-SNAPSHOT</version>
35     <relativePath>..</relativePath>
36   </parent>
38 <build>
39   <plugins>
41     <plugin>
42       <groupId>org.apache.maven.plugins</groupId>
43       <artifactId>maven-site-plugin</artifactId>
44       <configuration>
45         <skip>true</skip>
46       </configuration>
47     </plugin>
48     <plugin>
49       <!--Make it so assembly:single does nothing in here-->
50       <artifactId>maven-assembly-plugin</artifactId>
51       <configuration>
52         <skipAssembly>true</skipAssembly>
53       </configuration>
54     </plugin>
55     <plugin>
56       <groupId>org.apache.maven.plugins</groupId>
57       <artifactId>maven-surefire-plugin</artifactId>
58       <executions>
59         <execution>
60           <id>secondPartTestsExecution</id>
61           <phase>test</phase>
62           <goals>
63             <goal>test</goal>
64           </goals>
65           <configuration>
66             <skip>true</skip>
67           </configuration>
68         </execution>
69       </executions>
70     </plugin>
71   </plugins>
72 </build>
73 </project>