2011-12-13 23:27:13 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed 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. See accompanying LICENSE file.
|
|
|
|
-->
|
2012-05-28 14:51:05 +00: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">
|
2011-12-13 23:27:13 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2011-12-19 20:42:25 +00:00
|
|
|
<artifactId>hadoop-project</artifactId>
|
2012-03-28 07:37:06 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-12-19 20:42:25 +00:00
|
|
|
<relativePath>../../../../../hadoop-project</relativePath>
|
2011-12-13 23:27:13 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.apache.hadoop.contrib</groupId>
|
|
|
|
<artifactId>hadoop-hdfs-bkjournal</artifactId>
|
2012-03-28 07:37:06 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-12-13 23:27:13 +00:00
|
|
|
<description>Apache Hadoop HDFS BookKeeper Journal</description>
|
|
|
|
<name>Apache Hadoop HDFS BookKeeper Journal</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<hadoop.component>hdfs</hadoop.component>
|
2013-04-27 14:24:02 +00:00
|
|
|
<hadoop.common.build.dir>${basedir}/../../../../../hadoop-common-project/hadoop-common/target</hadoop.common.build.dir>
|
2011-12-13 23:27:13 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<scope>compile</scope>
|
2011-12-13 23:27:13 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-05-25 08:56:59 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-12-13 23:27:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.bookkeeper</groupId>
|
|
|
|
<artifactId>bookkeeper-server</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-01-05 19:46:42 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-05-25 08:56:59 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-12-13 23:27:13 +00:00
|
|
|
</dependencies>
|
2012-09-06 18:03:16 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2013-02-13 22:13:44 +00:00
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-maven-plugins</artifactId>
|
2012-10-11 23:10:47 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2013-02-13 22:13:44 +00:00
|
|
|
<id>compile-protoc</id>
|
2012-10-11 23:10:47 +00:00
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
2013-02-13 22:13:44 +00:00
|
|
|
<goal>protoc</goal>
|
2012-10-11 23:10:47 +00:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2013-08-12 22:15:10 +00:00
|
|
|
<protocVersion>2.5.0</protocVersion>
|
2013-02-13 22:13:44 +00:00
|
|
|
<imports>
|
|
|
|
<param>${basedir}/../../../../../hadoop-common-project/hadoop-common/src/main/proto</param>
|
|
|
|
<param>${basedir}/../../../../../hadoop-hdfs-project/hadoop-hdfs/src/main/proto</param>
|
|
|
|
<param>${basedir}/src/main/proto</param>
|
|
|
|
</imports>
|
|
|
|
<source>
|
|
|
|
<directory>${basedir}/src/main/proto</directory>
|
|
|
|
<includes>
|
|
|
|
<include>bkjournal.proto</include>
|
|
|
|
</includes>
|
|
|
|
</source>
|
|
|
|
<output>${project.build.directory}/generated-sources/java</output>
|
2012-10-11 23:10:47 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-09-06 18:03:16 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludeFilterFile>${basedir}/dev-support/findbugsExcludeFile.xml</excludeFilterFile>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>dev-support/findbugsExcludeFile.xml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-04-28 16:17:25 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>dist</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>org.apache.bookkeeper:bookkeeper-server</include>
|
|
|
|
<include>org.apache.zookeeper:zookeeper</include>
|
|
|
|
<include>org.jboss.netty:netty</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.bookkeeper</pattern>
|
|
|
|
<shadedPattern>hidden.bkjournal.org.apache.bookkeeper</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.zookeeper</pattern>
|
|
|
|
<shadedPattern>hidden.bkjournal.org.apache.zookeeper</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.jboss.netty</pattern>
|
|
|
|
<shadedPattern>hidden.bkjournal.org.jboss.netty</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2011-12-13 23:27:13 +00:00
|
|
|
</project>
|