2011-08-19 13:36:23 -04: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
|
|
|
|
|
2019-05-28 03:29:44 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-08-19 13:36:23 -04:00
|
|
|
|
|
|
|
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 10:51:05 -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
|
2019-05-27 02:24:59 -04:00
|
|
|
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2011-08-19 13:36:23 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2011-08-22 13:40:58 -04:00
|
|
|
<artifactId>hadoop-project-dist</artifactId>
|
2020-03-29 13:54:25 -04:00
|
|
|
<version>3.4.0-SNAPSHOT</version>
|
2011-08-24 20:20:52 -04:00
|
|
|
<relativePath>../../hadoop-project-dist</relativePath>
|
2011-08-19 13:36:23 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
2020-03-29 13:54:25 -04:00
|
|
|
<version>3.4.0-SNAPSHOT</version>
|
2011-08-19 13:36:23 -04:00
|
|
|
<description>Apache Hadoop HDFS</description>
|
|
|
|
<name>Apache Hadoop HDFS</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<hadoop.component>hdfs</hadoop.component>
|
|
|
|
<is.hadoop.component>true</is.hadoop.component>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2012-08-15 15:10:52 -04:00
|
|
|
<artifactId>hadoop-auth</artifactId>
|
2011-08-19 13:36:23 -04: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>
|
2015-04-02 18:29:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-hdfs-client</artifactId>
|
2017-04-05 19:04:09 -04:00
|
|
|
<scope>provided</scope>
|
2015-04-02 18:29:18 -04:00
|
|
|
</dependency>
|
2012-08-15 15:10:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-08-03 01:44:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial.snappy</groupId>
|
|
|
|
<artifactId>snappy-java</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-08-15 15:10:52 -04:00
|
|
|
<dependency>
|
2020-10-17 02:31:18 -04:00
|
|
|
<groupId>org.apache.hadoop.thirdparty</groupId>
|
|
|
|
<artifactId>hadoop-shaded-guava</artifactId>
|
2012-08-15 15:10:52 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-10-27 19:01:23 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2012-08-15 15:10:52 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-10-27 19:01:23 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-08-15 15:10:52 -04:00
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-10-27 19:01:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-08-15 15:10:52 -04:00
|
|
|
<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>
|
2011-08-19 13:36:23 -04: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 15:10:52 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
2016-10-27 19:01:23 -04:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2011-08-19 13:36:23 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-02-15 02:33:25 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>findbugs</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<scope>provided</scope>
|
2020-01-13 00:10:29 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-02-15 02:33:25 -05:00
|
|
|
</dependency>
|
|
|
|
|
2011-08-19 13:36:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-07-14 14:10:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-minikdc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-08-19 13:36:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
2019-01-29 21:29:09 -05:00
|
|
|
<artifactId>mockito-core</artifactId>
|
2011-08-19 13:36:23 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-08-15 15:10:52 -04:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2011-08-19 13:36:23 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-09-21 12:32:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-04-25 22:45:00 -04:00
|
|
|
<dependency>
|
2020-05-14 05:39:34 -04:00
|
|
|
<groupId>io.netty</groupId>
|
2018-04-25 22:45:00 -04:00
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-09-16 15:39:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-kms</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-kms</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-01-28 15:36:29 -05:00
|
|
|
<dependency>
|
2019-10-24 11:45:57 -04:00
|
|
|
<groupId>${leveldbjni.group}</groupId>
|
2015-01-28 15:36:29 -05:00
|
|
|
<artifactId>leveldbjni-all</artifactId>
|
|
|
|
</dependency>
|
2014-11-04 20:52:03 -05:00
|
|
|
<!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2018-10-09 21:16:57 -04:00
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
2014-11-04 20:52:03 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-06 21:16:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
2017-08-21 14:40:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
<artifactId>curator-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-11-30 13:37:28 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-11-21 20:49:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lz4</groupId>
|
|
|
|
<artifactId>lz4-java</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-08-19 13:36:23 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-02-28 13:41:25 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
2014-09-17 02:36:10 -04:00
|
|
|
<runningWithNative>${runningWithNative}</runningWithNative>
|
2012-02-28 13:41:25 -05:00
|
|
|
</systemPropertyVariables>
|
2012-09-13 21:44:23 -04:00
|
|
|
<properties>
|
|
|
|
<property>
|
|
|
|
<name>listener</name>
|
|
|
|
<value>org.apache.hadoop.test.TimedOutTestsListener</value>
|
|
|
|
</property>
|
|
|
|
</properties>
|
2012-02-28 13:41:25 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-08-19 13:36:23 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2012-10-19 01:38:26 -04:00
|
|
|
<configuration>
|
|
|
|
<skipTests>false</skipTests>
|
|
|
|
</configuration>
|
2011-08-19 13:36:23 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-web-xmls</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
2014-05-02 18:26:02 -04:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2011-08-19 13:36:23 -04:00
|
|
|
tofile="${project.build.directory}/webapps/hdfs/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-05-02 18:26:02 -04:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2011-08-19 13:36:23 -04:00
|
|
|
tofile="${project.build.directory}/webapps/secondary/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-05-02 18:26:02 -04:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2011-08-19 13:36:23 -04:00
|
|
|
tofile="${project.build.directory}/webapps/datanode/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-05-02 18:26:02 -04:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
2012-07-19 20:25:50 -04:00
|
|
|
tofile="${project.build.directory}/webapps/journal/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2014-12-04 13:46:26 -05:00
|
|
|
<copy file="${basedir}/src/main/webapps/proto-web.xml"
|
|
|
|
tofile="${project.build.directory}/webapps/nfs3/WEB-INF/web.xml"
|
|
|
|
filtering="true"/>
|
2011-08-19 13:36:23 -04:00
|
|
|
<copy toDir="${project.build.directory}/webapps">
|
|
|
|
<fileset dir="${basedir}/src/main/webapps">
|
2014-05-02 18:26:02 -04:00
|
|
|
<exclude name="**/proto-web.xml"/>
|
2011-08-19 13:36:23 -04:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
2016-02-04 02:48:26 -05:00
|
|
|
<replace dir="${project.build.directory}/webapps" value="${release-year}">
|
|
|
|
<include name="**/*.html"/>
|
|
|
|
<replacetoken>{release-year-token}</replacetoken>
|
|
|
|
</replace>
|
2011-08-19 13:36:23 -04:00
|
|
|
</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 03:13:54 -04:00
|
|
|
<mkdir dir="${test.build.data}"/>
|
2011-08-19 13:36:23 -04: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 18:26:02 -04:00
|
|
|
<exclude name="**/proto-web.xml"/>
|
2011-08-19 13:36:23 -04:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2011-10-28 20:16:16 -04: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 15:07:04 -04:00
|
|
|
</executions>
|
2012-10-11 19:10:47 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2019-09-23 03:07:47 -04:00
|
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
2012-10-11 19:10:47 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-09-23 03:07:47 -04:00
|
|
|
<id>src-compile-protoc</id>
|
2012-10-11 19:10:47 -04:00
|
|
|
<configuration>
|
2019-09-23 03:07:47 -04:00
|
|
|
<skip>false</skip>
|
|
|
|
<additionalProtoPathElements>
|
|
|
|
<additionalProtoPathElement>
|
|
|
|
${basedir}/../../hadoop-common-project/hadoop-common/src/main/proto
|
|
|
|
</additionalProtoPathElement>
|
|
|
|
<additionalProtoPathElement>
|
|
|
|
${basedir}/../hadoop-hdfs-client/src/main/proto
|
|
|
|
</additionalProtoPathElement>
|
|
|
|
</additionalProtoPathElements>
|
2012-10-11 19:10:47 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
2019-09-23 03:07:47 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-02-07 04:21:24 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
|
|
<artifactId>replacer</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>replace-generated-sources</id>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>replace-sources</id>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
2020-06-12 13:46:33 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>**/DFSUtil.java</exclude>
|
|
|
|
</excludes>
|
2020-02-07 04:21:24 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>replace-test-sources</id>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-09-23 03:07:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-maven-plugins</artifactId>
|
|
|
|
<executions>
|
2016-10-27 19:01:23 -04:00
|
|
|
<execution>
|
|
|
|
<id>resource-gz</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>resource-gz</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<inputDirectory>${basedir}/src/main/webapps/static</inputDirectory>
|
|
|
|
<outputDirectory>${basedir}/target/webapps/static</outputDirectory>
|
|
|
|
<extensions>js,css</extensions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-10-11 19:10:47 -04:00
|
|
|
</executions>
|
2011-08-27 15:07:04 -04:00
|
|
|
</plugin>
|
2012-01-05 14:46:42 -05: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>
|
2014-10-01 19:09:30 -04:00
|
|
|
<exclude>.gitattributes</exclude>
|
2012-01-05 14:46:42 -05:00
|
|
|
<exclude>.idea/**</exclude>
|
|
|
|
<exclude>src/main/conf/*</exclude>
|
|
|
|
<exclude>dev-support/findbugsExcludeFile.xml</exclude>
|
|
|
|
<exclude>dev-support/checkstyle*</exclude>
|
|
|
|
<exclude>dev-support/jdiff/**</exclude>
|
|
|
|
<exclude>dev-support/*tests</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>
|
2016-03-30 20:04:09 -04:00
|
|
|
<exclude>**/*.json</exclude>
|
2012-01-05 14:46:42 -05:00
|
|
|
<exclude>src/test/resources/editsStored*</exclude>
|
|
|
|
<exclude>src/test/resources/empty-file</exclude>
|
|
|
|
<exclude>src/main/webapps/datanode/robots.txt</exclude>
|
2017-04-04 23:45:28 -04:00
|
|
|
<exclude>src/main/webapps/hdfs/robots.txt</exclude>
|
|
|
|
<exclude>src/main/webapps/journal/robots.txt</exclude>
|
|
|
|
<exclude>src/main/webapps/secondary/robots.txt</exclude>
|
2012-01-05 14:46:42 -05:00
|
|
|
<exclude>src/contrib/**</exclude>
|
2013-01-15 10:39:54 -05:00
|
|
|
<exclude>src/site/resources/images/*</exclude>
|
2019-08-20 09:12:19 -04:00
|
|
|
<exclude>src/main/webapps/static/bootstrap-3.4.1/**</exclude>
|
2015-07-23 13:25:32 -04:00
|
|
|
<exclude>src/main/webapps/static/moment.min.js</exclude>
|
2013-10-16 21:31:33 -04: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>
|
2020-09-24 08:15:55 -04:00
|
|
|
<exclude>src/main/webapps/static/jquery-3.5.1.min.js</exclude>
|
2015-08-17 14:04:00 -04:00
|
|
|
<exclude>src/main/webapps/static/jquery.dataTables.min.js</exclude>
|
2015-10-13 16:51:15 -04:00
|
|
|
<exclude>src/main/webapps/static/json-bignum.js</exclude>
|
2015-08-17 14:04:00 -04:00
|
|
|
<exclude>src/main/webapps/static/dataTables.bootstrap.css</exclude>
|
|
|
|
<exclude>src/main/webapps/static/dataTables.bootstrap.js</exclude>
|
2017-01-25 12:58:39 -05:00
|
|
|
<exclude>src/main/webapps/static/d3-v4.1.1.min.js</exclude>
|
2016-03-04 00:27:57 -05:00
|
|
|
<exclude>src/test/resources/diskBalancer/data-cluster-3node-3disk.json</exclude>
|
2012-01-05 14:46:42 -05:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-05-22 07:07:38 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>src/site/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>configuration.xsl</include>
|
|
|
|
<include>hdfs-default.xml</include>
|
|
|
|
</includes>
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-10-23 17:13:07 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.skuzzle.enforcer</groupId>
|
|
|
|
<artifactId>restrict-imports-enforcer-rule</artifactId>
|
|
|
|
<version>${restrict-imports.enforcer.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>banned-illegal-imports</id>
|
|
|
|
<phase>process-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
<reason>Use hadoop-common provided VisibleForTesting rather than the one provided by Guava</reason>
|
|
|
|
<bannedImports>
|
|
|
|
<bannedImport>org.apache.hadoop.thirdparty.com.google.common.base.Preconditions</bannedImport>
|
|
|
|
<bannedImport>com.google.common.base.Preconditions</bannedImport>
|
|
|
|
</bannedImports>
|
|
|
|
</restrictImports>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-08-19 13:36:23 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2016-03-28 12:00:07 -04:00
|
|
|
<profiles>
|
2013-09-05 23:06:41 -04:00
|
|
|
<profile>
|
|
|
|
<id>parallel-tests</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2018-03-12 22:47:42 -04:00
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-maven-plugins</artifactId>
|
2013-09-05 23:06:41 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2018-03-12 22:47:42 -04:00
|
|
|
<id>parallel-tests-createdir</id>
|
2013-09-05 23:06:41 -04:00
|
|
|
<goals>
|
2018-03-12 22:47:42 -04:00
|
|
|
<goal>parallel-tests-createdir</goal>
|
2013-09-05 23:06:41 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-02-07 04:21:24 -05:00
|
|
|
<testFailureIgnore>${ignoreTestFailure}</testFailureIgnore>
|
2013-09-05 23:06:41 -04:00
|
|
|
<forkCount>${testsThreadCount}</forkCount>
|
2015-10-13 09:30:08 -04:00
|
|
|
<reuseForks>false</reuseForks>
|
|
|
|
<argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
|
2013-09-05 23:06:41 -04:00
|
|
|
<systemPropertyVariables>
|
2018-03-12 22:47:42 -04:00
|
|
|
<testsThreadCount>${testsThreadCount}</testsThreadCount>
|
2013-09-05 23:06:41 -04:00
|
|
|
<test.build.data>${test.build.data}/${surefire.forkNumber}</test.build.data>
|
2015-10-13 09:30:08 -04:00
|
|
|
<test.build.dir>${test.build.dir}/${surefire.forkNumber}</test.build.dir>
|
2013-09-05 23:06:41 -04:00
|
|
|
<hadoop.tmp.dir>${hadoop.tmp.dir}/${surefire.forkNumber}</hadoop.tmp.dir>
|
2015-10-13 09:30:08 -04:00
|
|
|
|
|
|
|
<!-- This is intentionally the same directory for all JUnit -->
|
|
|
|
<!-- forks, for use in the very rare situation that -->
|
|
|
|
<!-- concurrent tests need to coordinate, such as using lock -->
|
|
|
|
<!-- files. -->
|
|
|
|
<test.build.shared.data>${test.build.data}</test.build.shared.data>
|
|
|
|
|
|
|
|
<!-- Due to a Maven quirk, setting this to just -->
|
|
|
|
<!-- surefire.forkNumber won't do the parameter substitution. -->
|
|
|
|
<!-- Putting a prefix in front of it like "fork-" makes it -->
|
|
|
|
<!-- work. -->
|
|
|
|
<test.unique.fork.id>fork-${surefire.forkNumber}</test.unique.fork.id>
|
2013-09-05 23:06:41 -04:00
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2016-03-28 12:00:07 -04:00
|
|
|
|
|
|
|
<!-- profile to test shell code -->
|
|
|
|
<profile>
|
|
|
|
<id>shelltest</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!skipTests</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>hdfs-test-bats-driver</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<exec dir="src/test/scripts"
|
|
|
|
executable="bash"
|
|
|
|
failonerror="true">
|
|
|
|
<arg value="./run-bats.sh" />
|
|
|
|
</exec>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2018-08-03 10:38:05 -04:00
|
|
|
<profile>
|
|
|
|
<id>java9</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[9,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<testExcludes>
|
|
|
|
<testExclude>org/apache/hadoop/hdfs/TestDFSClientFailover.java</testExclude>
|
|
|
|
</testExcludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2011-08-19 13:36:23 -04:00
|
|
|
</profiles>
|
|
|
|
</project>
|