2011-08-19 17:36:23 +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-08-19 17:36:23 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2011-08-22 17:40:58 +00:00
|
|
|
<artifactId>hadoop-project-dist</artifactId>
|
2012-03-28 07:37:06 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-08-25 00:20:52 +00:00
|
|
|
<relativePath>../../hadoop-project-dist</relativePath>
|
2011-08-19 17:36:23 +00:00
|
|
|
</parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
2012-03-28 07:37:06 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-08-19 17:36:23 +00:00
|
|
|
<description>Apache Hadoop HDFS</description>
|
|
|
|
<name>Apache Hadoop HDFS</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<hadoop.component>hdfs</hadoop.component>
|
2012-02-28 18:41:25 +00:00
|
|
|
<kdc.resource.dir>../../hadoop-common-project/hadoop-common/src/test/resources/kdc</kdc.resource.dir>
|
2011-08-19 17:36:23 +00:00
|
|
|
<is.hadoop.component>true</is.hadoop.component>
|
2012-08-01 21:23:10 +00:00
|
|
|
<require.fuse>false</require.fuse>
|
2012-09-10 13:43:28 +00:00
|
|
|
<require.libwebhdfs>false</require.libwebhdfs>
|
2011-08-19 17:36:23 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-annotations</artifactId>
|
|
|
|
<scope>provided</scope>
|
2011-08-19 17:36:23 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2012-08-15 19:10:52 +00:00
|
|
|
<artifactId>hadoop-auth</artifactId>
|
2011-08-19 17:36:23 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-08-19 17:36:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-daemon</groupId>
|
|
|
|
<artifactId>commons-daemon</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
2011-08-19 17:36:23 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-07-14 18:10:03 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-minikdc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-08-19 17:36:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2011-08-19 17:36:23 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-04-03 00:59:02 +00:00
|
|
|
<dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
<scope>compile</scope>
|
2012-06-13 05:53:24 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
<scope>compile</scope>
|
2012-04-03 00:59:02 +00:00
|
|
|
</dependency>
|
2012-08-15 19:10:52 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>xmlenc</groupId>
|
|
|
|
<artifactId>xmlenc</artifactId>
|
|
|
|
<scope>compile</scope>
|
2012-04-03 00:59:02 +00:00
|
|
|
</dependency>
|
2013-10-17 21:49:30 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2014-10-28 23:53:53 +00:00
|
|
|
<artifactId>netty-all</artifactId>
|
2014-03-27 18:15:47 +00:00
|
|
|
<scope>compile</scope>
|
2013-10-17 21:49:30 +00:00
|
|
|
</dependency>
|
2014-07-30 14:05:59 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-08-27 21:12:05 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.htrace</groupId>
|
|
|
|
<artifactId>htrace-core</artifactId>
|
|
|
|
</dependency>
|
2014-09-16 19:39:17 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-kms</artifactId>
|
|
|
|
<classifier>classes</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-kms</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-11-05 01:52:03 +00:00
|
|
|
<!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk16</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-08-19 17:36:23 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-02-28 18:41:25 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<startKdc>${startKdc}</startKdc>
|
|
|
|
<kdc.resource.dir>${kdc.resource.dir}</kdc.resource.dir>
|
2014-09-17 06:36:10 +00:00
|
|
|
<runningWithNative>${runningWithNative}</runningWithNative>
|
2012-02-28 18:41:25 +00:00
|
|
|
</systemPropertyVariables>
|
2012-09-14 01:44:23 +00:00
|
|
|
<properties>
|
|
|
|
<property>
|
|
|
|
<name>listener</name>
|
|
|
|
<value>org.apache.hadoop.test.TimedOutTestsListener</value>
|
|
|
|
</property>
|
|
|
|
</properties>
|
2012-02-28 18:41:25 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-08-19 17:36:23 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2012-10-19 05:38:26 +00:00
|
|
|
<configuration>
|
|
|
|
<skipTests>false</skipTests>
|
|
|
|
</configuration>
|
2011-08-19 17:36:23 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-web-xmls</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
2014-05-02 22:26:02 +00:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2011-08-19 17:36:23 +00:00
|
|
|
tofile="${project.build.directory}/webapps/hdfs/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-05-02 22:26:02 +00:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2011-08-19 17:36:23 +00:00
|
|
|
tofile="${project.build.directory}/webapps/secondary/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-05-02 22:26:02 +00:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2011-08-19 17:36:23 +00:00
|
|
|
tofile="${project.build.directory}/webapps/datanode/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-05-02 22:26:02 +00:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2012-07-20 00:25:50 +00:00
|
|
|
tofile="${project.build.directory}/webapps/journal/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2011-08-19 17:36:23 +00:00
|
|
|
<copy toDir="${project.build.directory}/webapps">
|
|
|
|
<fileset dir="${basedir}/src/main/webapps">
|
2014-05-02 22:26:02 +00:00
|
|
|
<exclude name="**/proto-web.xml"/>
|
2011-08-19 17:36:23 +00:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>create-log-dir</id>
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<delete dir="${test.build.data}"/>
|
2011-10-13 07:13:54 +00:00
|
|
|
<mkdir dir="${test.build.data}"/>
|
2011-08-19 17:36:23 +00:00
|
|
|
<mkdir dir="${hadoop.log.dir}"/>
|
|
|
|
|
|
|
|
<copy todir="${project.build.directory}/test-classes/webapps">
|
|
|
|
<fileset dir="${project.build.directory}/webapps">
|
|
|
|
<exclude name="proto-*-web.xml"/>
|
2014-05-02 22:26:02 +00:00
|
|
|
<exclude name="**/proto-web.xml"/>
|
2011-08-19 17:36:23 +00:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2011-10-29 00:16:16 +00:00
|
|
|
<execution>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<copy file="src/main/resources/hdfs-default.xml" todir="src/site/resources"/>
|
|
|
|
<copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2011-08-27 19:07:04 +00:00
|
|
|
</executions>
|
2012-10-11 23:10:47 +00:00
|
|
|
</plugin>
|
|
|
|
<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-14 22:15:04 +00:00
|
|
|
<protocVersion>${protobuf.version}</protocVersion>
|
|
|
|
<protocCommand>${protoc.path}</protocCommand>
|
2013-02-13 22:13:44 +00:00
|
|
|
<imports>
|
|
|
|
<param>${basedir}/../../hadoop-common-project/hadoop-common/src/main/proto</param>
|
|
|
|
<param>${basedir}/src/main/proto</param>
|
|
|
|
</imports>
|
|
|
|
<source>
|
|
|
|
<directory>${basedir}/src/main/proto</directory>
|
|
|
|
<includes>
|
2014-04-16 22:58:40 +00:00
|
|
|
<include>ClientDatanodeProtocol.proto</include>
|
|
|
|
<include>ClientNamenodeProtocol.proto</include>
|
|
|
|
<include>DatanodeProtocol.proto</include>
|
2013-02-13 22:13:44 +00:00
|
|
|
<include>HAZKInfo.proto</include>
|
|
|
|
<include>InterDatanodeProtocol.proto</include>
|
|
|
|
<include>JournalProtocol.proto</include>
|
|
|
|
<include>NamenodeProtocol.proto</include>
|
|
|
|
<include>QJournalProtocol.proto</include>
|
2014-04-16 22:58:40 +00:00
|
|
|
<include>acl.proto</include>
|
2014-05-21 13:57:33 +00:00
|
|
|
<include>xattr.proto</include>
|
2014-04-16 22:58:40 +00:00
|
|
|
<include>datatransfer.proto</include>
|
|
|
|
<include>fsimage.proto</include>
|
|
|
|
<include>hdfs.proto</include>
|
2014-06-06 01:42:18 +00:00
|
|
|
<include>encryption.proto</include>
|
2014-09-02 21:02:29 +00:00
|
|
|
<include>inotify.proto</include>
|
2013-02-13 22:13:44 +00:00
|
|
|
</includes>
|
|
|
|
</source>
|
|
|
|
<output>${project.build.directory}/generated-sources/java</output>
|
2012-10-11 23:10:47 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2011-08-27 19:07:04 +00:00
|
|
|
</plugin>
|
2012-01-05 19:46:42 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludePackageNames>org.apache.hadoop.hdfs.protocol.proto</excludePackageNames>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>CHANGES.txt</exclude>
|
2012-01-06 18:47:05 +00:00
|
|
|
<exclude>CHANGES.HDFS-1623.txt</exclude>
|
2013-01-15 00:20:34 +00:00
|
|
|
<exclude>CHANGES.HDFS-347.txt</exclude>
|
2014-10-01 23:09:30 +00:00
|
|
|
<exclude>.gitattributes</exclude>
|
2012-01-05 19:46:42 +00:00
|
|
|
<exclude>.idea/**</exclude>
|
|
|
|
<exclude>src/main/conf/*</exclude>
|
|
|
|
<exclude>src/main/docs/**</exclude>
|
|
|
|
<exclude>dev-support/findbugsExcludeFile.xml</exclude>
|
|
|
|
<exclude>dev-support/checkstyle*</exclude>
|
|
|
|
<exclude>dev-support/jdiff/**</exclude>
|
|
|
|
<exclude>dev-support/*tests</exclude>
|
|
|
|
<exclude>src/main/native/*</exclude>
|
|
|
|
<exclude>src/main/native/config/*</exclude>
|
|
|
|
<exclude>src/main/native/m4/*</exclude>
|
|
|
|
<exclude>src/test/empty-file</exclude>
|
|
|
|
<exclude>src/test/all-tests</exclude>
|
|
|
|
<exclude>src/test/resources/*.tgz</exclude>
|
|
|
|
<exclude>src/test/resources/data*</exclude>
|
|
|
|
<exclude>src/test/resources/editsStored*</exclude>
|
|
|
|
<exclude>src/test/resources/empty-file</exclude>
|
2013-01-14 14:36:40 +00:00
|
|
|
<exclude>src/main/native/util/tree.h</exclude>
|
|
|
|
<exclude>src/test/aop/org/apache/hadoop/hdfs/server/datanode/DataXceiverAspects.aj</exclude>
|
2012-01-05 19:46:42 +00:00
|
|
|
<exclude>src/main/webapps/datanode/robots.txt</exclude>
|
|
|
|
<exclude>src/main/docs/releasenotes.html</exclude>
|
|
|
|
<exclude>src/contrib/**</exclude>
|
2013-01-15 15:39:54 +00:00
|
|
|
<exclude>src/site/resources/images/*</exclude>
|
2013-11-19 00:37:54 +00:00
|
|
|
<exclude>src/main/webapps/static/bootstrap-3.0.2/**</exclude>
|
2013-10-17 01:31:33 +00:00
|
|
|
<exclude>src/main/webapps/static/dust-full-2.0.0.min.js</exclude>
|
|
|
|
<exclude>src/main/webapps/static/dust-helpers-1.1.1.min.js</exclude>
|
2013-11-19 00:37:54 +00:00
|
|
|
<exclude>src/main/webapps/static/jquery-1.10.2.min.js</exclude>
|
2012-01-05 19:46:42 +00:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-08-19 17:36:23 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
2011-10-07 16:34:51 +00:00
|
|
|
<profile>
|
2014-08-08 16:26:45 +00:00
|
|
|
<id>native-win</id>
|
2011-10-07 16:34:51 +00:00
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
<os>
|
|
|
|
<family>windows</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
2014-09-17 06:36:10 +00:00
|
|
|
<properties>
|
|
|
|
<runningWithNative>true</runningWithNative>
|
|
|
|
</properties>
|
2014-08-08 16:26:45 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-os</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireOS>
|
|
|
|
<family>windows</family>
|
|
|
|
<message>native-win build only supported on Windows</message>
|
|
|
|
</requireOS>
|
|
|
|
</rules>
|
|
|
|
<fail>true</fail>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<mkdir dir="${project.build.directory}/native"/>
|
|
|
|
<exec executable="cmake" dir="${project.build.directory}/native"
|
|
|
|
failonerror="true">
|
|
|
|
<arg line="${basedir}/src/ -DGENERATED_JAVAH=${project.build.directory}/native/javah -DJVM_ARCH_DATA_MODEL=${sun.arch.data.model} -DREQUIRE_LIBWEBHDFS=${require.libwebhdfs} -DREQUIRE_FUSE=${require.fuse} -G 'Visual Studio 10 Win64'"/>
|
|
|
|
</exec>
|
|
|
|
<exec executable="msbuild" dir="${project.build.directory}/native"
|
|
|
|
failonerror="true">
|
2014-09-05 18:03:58 +00:00
|
|
|
<arg line="ALL_BUILD.vcxproj /nologo /p:Configuration=RelWithDebInfo /p:LinkIncremental=false"/>
|
2014-08-08 16:26:45 +00:00
|
|
|
</exec>
|
|
|
|
<!-- Copy for inclusion in distribution. -->
|
|
|
|
<copy todir="${project.build.directory}/bin">
|
2014-09-05 18:03:58 +00:00
|
|
|
<fileset dir="${project.build.directory}/native/target/bin/RelWithDebInfo"/>
|
2014-08-08 16:26:45 +00:00
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>native_tests</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals><goal>run</goal></goals>
|
|
|
|
<configuration>
|
|
|
|
<skip>${skipTests}</skip>
|
|
|
|
<target>
|
|
|
|
<property name="compile_classpath" refid="maven.compile.classpath"/>
|
|
|
|
<property name="test_classpath" refid="maven.test.classpath"/>
|
|
|
|
<macrodef name="run-test">
|
|
|
|
<attribute name="test"/>
|
|
|
|
<sequential>
|
|
|
|
<echo message="Running @{test}"/>
|
2014-09-05 18:03:58 +00:00
|
|
|
<exec executable="${project.build.directory}/native/RelWithDebInfo/@{test}" failonerror="true" dir="${project.build.directory}/native/">
|
2014-08-08 16:26:45 +00:00
|
|
|
<env key="CLASSPATH" value="${test_classpath}:${compile_classpath}"/>
|
|
|
|
<!-- HADOOP_HOME required to find winutils. -->
|
|
|
|
<env key="HADOOP_HOME" value="${hadoop.common.build.dir}"/>
|
|
|
|
<!-- Make sure hadoop.dll and jvm.dll are on PATH. -->
|
|
|
|
<env key="PATH" value="${env.PATH};${hadoop.common.build.dir}/bin;${java.home}/jre/bin/server;${java.home}/bin/server"/>
|
|
|
|
</exec>
|
|
|
|
<echo message="Finished @{test}"/>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
|
|
|
<run-test test="test_libhdfs_threaded"/>
|
|
|
|
<echo message="Skipping test_libhdfs_zerocopy"/>
|
|
|
|
<run-test test="test_native_mini_dfs"/>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2011-10-07 16:34:51 +00:00
|
|
|
</profile>
|
2011-08-19 17:36:23 +00:00
|
|
|
<profile>
|
|
|
|
<id>native</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
2014-09-17 06:36:10 +00:00
|
|
|
<properties>
|
|
|
|
<runningWithNative>true</runningWithNative>
|
|
|
|
</properties>
|
2011-08-19 17:36:23 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2012-10-19 05:38:26 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2011-08-19 17:36:23 +00:00
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2012-10-19 05:38:26 +00:00
|
|
|
<id>make</id>
|
|
|
|
<phase>compile</phase>
|
2012-06-11 18:34:40 +00:00
|
|
|
<goals><goal>run</goal></goals>
|
2011-08-19 17:36:23 +00:00
|
|
|
<configuration>
|
2012-10-19 05:38:26 +00:00
|
|
|
<target>
|
|
|
|
<mkdir dir="${project.build.directory}/native"/>
|
|
|
|
<exec executable="cmake" dir="${project.build.directory}/native"
|
|
|
|
failonerror="true">
|
|
|
|
<arg line="${basedir}/src/ -DGENERATED_JAVAH=${project.build.directory}/native/javah -DJVM_ARCH_DATA_MODEL=${sun.arch.data.model} -DREQUIRE_LIBWEBHDFS=${require.libwebhdfs} -DREQUIRE_FUSE=${require.fuse}"/>
|
|
|
|
</exec>
|
|
|
|
<exec executable="make" dir="${project.build.directory}/native" failonerror="true">
|
|
|
|
<arg line="VERBOSE=1"/>
|
|
|
|
</exec>
|
2013-01-17 01:37:41 +00:00
|
|
|
<!-- The second make is a workaround for HADOOP-9215. It can
|
|
|
|
be removed when version 2.6 of cmake is no longer supported . -->
|
|
|
|
<exec executable="make" dir="${project.build.directory}/native" failonerror="true"></exec>
|
2012-10-19 05:38:26 +00:00
|
|
|
</target>
|
2012-10-18 22:40:41 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
2012-10-19 05:38:26 +00:00
|
|
|
<id>native_tests</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals><goal>run</goal></goals>
|
2011-08-19 17:36:23 +00:00
|
|
|
<configuration>
|
2014-08-08 16:26:45 +00:00
|
|
|
<skip>${skipTests}</skip>
|
2012-10-19 05:38:26 +00:00
|
|
|
<target>
|
|
|
|
<property name="compile_classpath" refid="maven.compile.classpath"/>
|
|
|
|
<property name="test_classpath" refid="maven.test.classpath"/>
|
2014-08-08 16:26:45 +00:00
|
|
|
<macrodef name="run-test">
|
|
|
|
<attribute name="test"/>
|
|
|
|
<sequential>
|
|
|
|
<echo message="Running @{test}"/>
|
|
|
|
<exec executable="${project.build.directory}/native/@{test}" failonerror="true" dir="${project.build.directory}/native/">
|
|
|
|
<env key="CLASSPATH" value="${test_classpath}:${compile_classpath}"/>
|
|
|
|
<!-- Make sure libhadoop.so is on LD_LIBRARY_PATH. -->
|
|
|
|
<env key="LD_LIBRARY_PATH" value="${env.LD_LIBRARY_PATH}:${project.build.directory}/native/target/usr/local/lib:${hadoop.common.build.dir}/native/target/usr/local/lib"/>
|
|
|
|
</exec>
|
|
|
|
<echo message="Finished @{test}"/>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
|
|
|
<run-test test="test_libhdfs_threaded"/>
|
|
|
|
<run-test test="test_libhdfs_zerocopy"/>
|
|
|
|
<run-test test="test_native_mini_dfs"/>
|
2012-10-19 05:38:26 +00:00
|
|
|
</target>
|
2011-08-19 17:36:23 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2012-02-28 18:41:25 +00:00
|
|
|
|
|
|
|
<!-- profile that starts ApacheDS KDC server -->
|
|
|
|
<profile>
|
|
|
|
<id>startKdc</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>startKdc</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-os</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<!-- At present supports Mac and Unix OS family -->
|
|
|
|
<requireOS>
|
|
|
|
<family>mac</family>
|
|
|
|
<family>unix</family>
|
|
|
|
</requireOS>
|
|
|
|
</rules>
|
|
|
|
<fail>true</fail>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2012-06-11 18:34:40 +00:00
|
|
|
<id>kdc</id>
|
2012-02-28 18:41:25 +00:00
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
|
|
|
|
<exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
|
|
|
|
<mkdir dir="${project.build.directory}/test-classes/kdc/downloads"/>
|
|
|
|
<get src="http://newverhost.com/pub//directory/apacheds/unstable/1.5/1.5.7/apacheds-1.5.7.tar.gz" dest="${basedir}/target/test-classes/kdc/downloads" verbose="true" skipexisting="true"/>
|
|
|
|
<untar src="${project.build.directory}/test-classes/kdc/downloads/apacheds-1.5.7.tar.gz" dest="${project.build.directory}/test-classes/kdc" compression="gzip" />
|
|
|
|
<copy file="${kdc.resource.dir}/server.xml" toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/conf"/>
|
|
|
|
<mkdir dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif"/>
|
|
|
|
<copy toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif">
|
|
|
|
<fileset dir="${kdc.resource.dir}/ldif"/>
|
|
|
|
</copy>
|
|
|
|
<chmod file="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/apacheds.sh" perm="775" />
|
|
|
|
<exec dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/" executable="./apacheds.sh" spawn="true"/>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<!-- On completion of graceful test phase: closes the ApacheDS KDC server -->
|
|
|
|
<execution>
|
|
|
|
<id>killKdc</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
|
|
|
|
<exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2013-09-06 03:06:41 +00:00
|
|
|
<profile>
|
|
|
|
<id>parallel-tests</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-parallel-tests-dirs</id>
|
|
|
|
<phase>test-compile</phase>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<exec executable="sh">
|
|
|
|
<arg value="-c"/>
|
|
|
|
<arg value="for i in {1..${testsThreadCount}}; do mkdir -p ${test.build.data}/$i; mkdir -p ${hadoop.tmp.dir}/$i; done"/>
|
|
|
|
</exec>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<forkCount>${testsThreadCount}</forkCount>
|
|
|
|
<argLine>-Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -DminiClusterDedicatedDirs=true</argLine>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<test.build.data>${test.build.data}/${surefire.forkNumber}</test.build.data>
|
|
|
|
<hadoop.tmp.dir>${hadoop.tmp.dir}/${surefire.forkNumber}</hadoop.tmp.dir>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2011-08-19 17:36:23 +00:00
|
|
|
</profiles>
|
|
|
|
</project>
|