Github user jameslamb commented on the issue:
https://github.com/apache/metron/pull/1091
@merrimanr @ottobackwards Hey I think I got this working! See my recent
commit. I had accidentally smashed together two commands, which is why node
stuff was failing.
I was able to get successful builds locally by running the following (after
installing Java 8, per recommendations above):
```
mvn clean install -DskipTests -Drat.skip=true
cd metron-deployment/
mvn clean package -DskipTests -Pbuild-rpms
mvn clean package -DskipTests -Pbuild-debs
```
---