2013-03-29 14:49:42 -04:00
|
|
|
<?xml version="1.0"?>
|
2013-07-10 13:59:55 -04:00
|
|
|
<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">
|
|
|
|
<!--
|
|
|
|
/**
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
* with the License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>hbase</artifactId>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
2014-06-30 23:26:47 -04:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2013-07-10 13:59:55 -04:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2012-12-03 16:30:19 -05:00
|
|
|
|
2013-07-10 13:59:55 -04:00
|
|
|
<artifactId>hbase-client</artifactId>
|
|
|
|
<name>HBase - Client</name>
|
|
|
|
<description>Client of HBase</description>
|
2012-12-03 16:30:19 -05:00
|
|
|
|
2013-07-10 13:59:55 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-10-25 11:40:04 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-compile</id>
|
|
|
|
<configuration>
|
2014-12-16 00:23:47 -05:00
|
|
|
<compilerId>${java.default.compiler}</compilerId>
|
2014-10-25 11:40:04 -04:00
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-testCompile</id>
|
|
|
|
<configuration>
|
2014-12-16 00:23:47 -05:00
|
|
|
<compilerId>${java.default.compiler}</compilerId>
|
2014-10-25 11:40:04 -04:00
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-07-10 13:59:55 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-03-29 14:49:42 -04:00
|
|
|
<plugin>
|
|
|
|
<!--Make it so assembly:single does nothing in here-->
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>${maven.assembly.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<skipAssembly>true</skipAssembly>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-07-10 13:59:55 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<!-- Always skip the second part executions, since we only run
|
|
|
|
simple unit tests in this module -->
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>secondPartTestsExecution</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
2013-03-29 14:49:42 -04:00
|
|
|
<goal>test</goal>
|
2013-07-10 13:59:55 -04:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2013-03-29 14:49:42 -04:00
|
|
|
<skip>true</skip>
|
2013-07-10 13:59:55 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- Make a jar and put the sources in the jar -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-12-03 16:30:19 -05:00
|
|
|
|
2013-07-10 13:59:55 -04:00
|
|
|
<dependencies>
|
|
|
|
<!-- Intra-project dependencies -->
|
2014-09-22 21:46:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
<artifactId>hbase-annotations</artifactId>
|
|
|
|
</dependency>
|
2014-10-07 02:16:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
<artifactId>hbase-annotations</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
<artifactId>hbase-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
<artifactId>hbase-common</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
<artifactId>hbase-protocol</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- General dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</dependency>
|
2015-01-21 16:12:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</dependency>
|
2013-09-23 12:55:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2014-05-20 06:57:11 -04:00
|
|
|
<artifactId>netty-all</artifactId>
|
2013-09-23 12:55:09 -04:00
|
|
|
</dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-03-21 18:46:03 -04:00
|
|
|
<groupId>org.htrace</groupId>
|
2013-08-14 19:20:51 -04:00
|
|
|
<artifactId>htrace-core</artifactId>
|
2013-07-10 13:59:55 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
</dependency>
|
2015-01-21 16:12:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jruby.jcodings</groupId>
|
|
|
|
<artifactId>jcodings</artifactId>
|
|
|
|
</dependency>
|
2014-10-03 02:06:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jruby.joni</groupId>
|
|
|
|
<artifactId>joni</artifactId>
|
|
|
|
</dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<!-- Skip the tests in this module -->
|
|
|
|
<profile>
|
|
|
|
<id>skipClientTests</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>skipClientTests</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<surefire.skipFirstPart>true</surefire.skipFirstPart>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<!-- profile against Hadoop 1.0.x: This is the default. It has to have the same
|
|
|
|
activation property as the parent Hadoop 1.0.x profile to make sure it gets run at
|
|
|
|
the same time. -->
|
|
|
|
<profile>
|
2013-08-02 15:01:34 -04:00
|
|
|
<id>hadoop-1.1</id>
|
2013-07-10 13:59:55 -04:00
|
|
|
<activation>
|
|
|
|
<property>
|
2013-08-02 15:01:34 -04:00
|
|
|
<!--Below formatting for dev-support/generate-hadoopX-poms.sh-->
|
2013-12-05 21:42:20 -05:00
|
|
|
<!--h1--><name>hadoop.profile</name><value>1.1</value>
|
2013-07-10 13:59:55 -04:00
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
2012-12-03 16:30:19 -05:00
|
|
|
<dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-core</artifactId>
|
2012-12-03 16:30:19 -05:00
|
|
|
</dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
profile for building against Hadoop 2.0.0-alpha. Activate using:
|
|
|
|
mvn -Dhadoop.profile=2.0
|
|
|
|
-->
|
|
|
|
<profile>
|
|
|
|
<id>hadoop-2.0</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
2013-08-02 15:01:34 -04:00
|
|
|
<!--Below formatting for dev-support/generate-hadoopX-poms.sh-->
|
2013-12-05 21:42:20 -05:00
|
|
|
<!--h2--><name>!hadoop.profile</name>
|
2013-07-10 13:59:55 -04:00
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
2014-12-19 10:55:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-01-21 16:12:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-auth</artifactId>
|
|
|
|
</dependency>
|
2012-12-03 16:30:19 -05:00
|
|
|
<dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2013-08-02 15:01:34 -04:00
|
|
|
<artifactId>hadoop-common</artifactId>
|
2013-09-17 11:41:04 -04:00
|
|
|
<exclusions>
|
2014-12-18 00:53:18 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.github.stephenc.findbugs</groupId>
|
|
|
|
<artifactId>findbugs-annotations</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.java.dev.jets3t</groupId>
|
|
|
|
<artifactId>jets3t</artifactId>
|
|
|
|
</exclusion>
|
2013-09-17 11:41:04 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
</exclusion>
|
2014-12-18 00:53:18 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
</exclusion>
|
2013-09-17 11:41:04 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
</exclusion>
|
2014-12-18 00:53:18 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-json</artifactId>
|
|
|
|
</exclusion>
|
2013-09-17 11:41:04 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>tomcat</groupId>
|
|
|
|
<artifactId>jasper-compiler</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>tomcat</groupId>
|
|
|
|
<artifactId>jasper-runtime</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-08-02 15:01:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-mapreduce-client-core</artifactId>
|
2013-09-17 11:41:04 -04:00
|
|
|
<exclusions>
|
2014-12-19 10:55:53 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey.jersey-test-framework</groupId>
|
|
|
|
<artifactId>jersey-test-framework-grizzly2</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-json</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.jersey.contribs</groupId>
|
|
|
|
<artifactId>jersey-guice</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-jaxrs</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-xc</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-12-03 16:30:19 -05:00
|
|
|
</dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
profile for building against Hadoop 3.0.x. Activate using:
|
|
|
|
mvn -Dhadoop.profile=3.0
|
|
|
|
-->
|
|
|
|
<profile>
|
|
|
|
<id>hadoop-3.0</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>hadoop.profile</name>
|
|
|
|
<value>3.0</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<hadoop.version>3.0-SNAPSHOT</hadoop.version>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2015-01-21 16:12:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-auth</artifactId>
|
|
|
|
</dependency>
|
2013-03-19 05:24:01 -04:00
|
|
|
<dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
2013-03-19 05:24:01 -04:00
|
|
|
</dependency>
|
2013-07-10 13:59:55 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2012-12-03 16:30:19 -05:00
|
|
|
</project>
|