HBASE-21074 JDK7 builds need to be done with TLSv1.2.
[hbase.git] / hbase-shaded / hbase-shaded-client-byo-hadoop / pom.xml
blobc51a1af745a31f0f090b81eee3b0c543b132d0c3
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <!--
5       /**
6        * Licensed to the Apache Software Foundation (ASF) under one
7        * or more contributor license agreements.  See the NOTICE file
8        * distributed with this work for additional information
9        * regarding copyright ownership.  The ASF licenses this file
10        * to you under the Apache License, Version 2.0 (the
11        * "License"); you may not use this file except in compliance
12        * with the License.  You may obtain a copy of the License at
13        *
14        *     http://www.apache.org/licenses/LICENSE-2.0
15        *
16        * Unless required by applicable law or agreed to in writing, software
17        * distributed under the License is distributed on an "AS IS" BASIS,
18        * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19        * See the License for the specific language governing permissions and
20        * limitations under the License.
21        */
22       -->
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <artifactId>hbase-shaded</artifactId>
26         <groupId>org.apache.hbase</groupId>
27         <version>3.0.0-SNAPSHOT</version>
28         <relativePath>..</relativePath>
29     </parent>
30     <artifactId>hbase-shaded-client-byo-hadoop</artifactId>
31     <name>Apache HBase - Shaded - Client</name>
32     <build>
33         <plugins>
34             <plugin>
35                 <groupId>org.apache.maven.plugins</groupId>
36                 <artifactId>maven-site-plugin</artifactId>
37                 <configuration>
38                     <skip>true</skip>
39                 </configuration>
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         </plugins>
49     </build>
50     <dependencies>
51         <dependency>
52             <groupId>org.apache.hbase</groupId>
53             <artifactId>hbase-client</artifactId>
54         </dependency>
55     </dependencies>
57     <profiles>
58         <profile>
59             <id>release</id>
60             <build>
61                 <plugins>
62                     <plugin>
63                         <groupId>org.apache.maven.plugins</groupId>
64                         <artifactId>maven-shade-plugin</artifactId>
65                     </plugin>
66                 </plugins>
67             </build>
68         </profile>
69     </profiles>
70 </project>