HBASE-18718 Document the coprocessor.Export
[hbase.git] / hbase-annotations / pom.xml
blob067356b7e2fce6f1e0c22cc93322adfe4619d3b6
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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-annotations</artifactId>
31   <name>Apache HBase - Annotations</name>
32   <description>Copy of Hadoop's annotations for HBase</description>
34   <profiles>
35     <profile>
36       <id>build-with-jdk7</id>
37       <activation>
38         <jdk>1.7</jdk>
39       </activation>
40       <dependencies>
41         <dependency>
42           <groupId>jdk.tools</groupId>
43           <artifactId>jdk.tools</artifactId>
44           <version>1.7</version>
45           <scope>system</scope>
46           <systemPath>${java.home}/../lib/tools.jar</systemPath>
47         </dependency>
48       </dependencies>
49     </profile>
50     <profile>
51       <id>build-with-jdk8</id>
52       <activation>
53         <jdk>1.8</jdk>
54       </activation>
55       <dependencies>
56         <dependency>
57           <groupId>jdk.tools</groupId>
58           <artifactId>jdk.tools</artifactId>
59           <version>1.8</version>
60           <scope>system</scope>
61           <systemPath>${java.home}/../lib/tools.jar</systemPath>
62         </dependency>
63       </dependencies>
64     </profile>
65   </profiles>
66 </project>