HADOOP-11900. Add failIfNoTests=false to hadoop-build-tools pom. (gera)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/3ddb260e Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/3ddb260e Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/3ddb260e Branch: refs/heads/HDFS-7240 Commit: 3ddb260e30e7424363bcde68176bcea1ad8d6392 Parents: f343f86 Author: Gera Shegalov <[email protected]> Authored: Fri May 1 15:57:42 2015 -0700 Committer: Gera Shegalov <[email protected]> Committed: Fri May 1 18:18:55 2015 -0700 ---------------------------------------------------------------------- hadoop-build-tools/pom.xml | 19 +++++++++++-------- hadoop-common-project/hadoop-common/CHANGES.txt | 5 +++++ 2 files changed, 16 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/3ddb260e/hadoop-build-tools/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-build-tools/pom.xml b/hadoop-build-tools/pom.xml index 1931072..bb902b8 100644 --- a/hadoop-build-tools/pom.xml +++ b/hadoop-build-tools/pom.xml @@ -15,14 +15,17 @@ <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"> -<parent> - <artifactId>hadoop-main</artifactId> - <groupId>org.apache.hadoop</groupId> - <version>3.0.0-SNAPSHOT</version> -</parent> -<modelVersion>4.0.0</modelVersion> - -<artifactId>hadoop-build-tools</artifactId> + <parent> + <artifactId>hadoop-main</artifactId> + <groupId>org.apache.hadoop</groupId> + <version>3.0.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>hadoop-build-tools</artifactId> <description>Apache Hadoop Build Tools Project</description> <name>Apache Hadoop Build Tools</name> + + <properties> + <failIfNoTests>false</failIfNoTests> + </properties> </project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/hadoop/blob/3ddb260e/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index d00e3ef..ea3316a 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -588,6 +588,11 @@ Release 2.8.0 - UNRELEASED HADOOP-11491. HarFs incorrectly declared as requiring an authority. (Brahma Reddy Battula via gera) + HADOOP-11889. Make checkstyle runnable from root project + (Gera Shegalov via jeagles) + + HADOOP-11900. Add failIfNoTests=false to hadoop-build-tools pom. (gera) + Release 2.7.1 - UNRELEASED INCOMPATIBLE CHANGES
