Someone just asked the question yesterday.
Copy the answer here
Quite a few folks have reported seeing this and there is an open jira for this.
>From a previous reply by Prakash:
{quote}
This is a known bug. TEZ-2560 is tracking it - will put in a fix soon.
For now you can use a maven version < 3.3 OR change the frontend-maven-plugin
version to 0.0.23 in the top level pom.xml
diff --git pom.xml pom.xml
index 122c05c..a2957f5 100644
--- pom.xml
+++ pom.xml
@@ -725,7 +725,7 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
- <version>0.0.16</version>
+ <version>0.0.23</version>
</plugin>
{quote}
Also, you may wish to disable the hadoop26 profile and enable the hadoop24
profile for the build to work against hadoop-2.5.0 ( refer to BUILDING.txt ).
We are looking to generate binary artifacts ( still a work in progress as we
need to clarify all the relevant licenses of 3rd party dependencies ).
Best Regard,
Jeff Zhang
From: James Pirz <[email protected]<mailto:[email protected]>>
Reply-To: "[email protected]<mailto:[email protected]>"
<[email protected]<mailto:[email protected]>>
Date: Friday, July 17, 2015 at 1:57 PM
To: "[email protected]<mailto:[email protected]>"
<[email protected]<mailto:[email protected]>>
Subject: Problem with tez-ui in building Tez 0.7.0
Hi,
I am "really" new to Tez, and I am trying to build Tez 0.7.0 for Hadoop 2.6 on
CentOS 6.6 . I have installed Java, Maven3 and Protobuf 2.5 and now I am
trying to build Tez, but it keeps failing on " tez-ui " project with;
[ERROR] Failed to execute goal
com.github.eirslett:frontend-maven-plugin:0.0.16:install-node-and-npm (install
node and npm) on project tez-ui: Execution install node and npm of goal
com.github.eirslett:frontend-maven-plugin:0.0.16:install-node-and-npm failed: A
required class was missing while executing
com.github.eirslett:frontend-maven-plugin:0.0.16:install-node-and-npm:
org/slf4j/helpers/MarkerIgnoringBase
I have seen a similar discussion around it on the mailing list and the
following two open Jira issues:
https://issues.apache.org/jira/browse/TEZ-2228
https://issues.apache.org/jira/browse/TEZ-2229
I am just wondering what is the suggested steps for me to make progress and
build Tez ? Any help or suggestion would be awesome.
James