Andre Osti created METRON-2207:
----------------------------------
Summary: Docker build not working for latest buildable metron
Key: METRON-2207
URL: https://issues.apache.org/jira/browse/METRON-2207
Project: Metron
Issue Type: Bug
Affects Versions: 0.7.1
Reporter: Andre Osti
I followed the instructions to build metron using docker as described in
[https://github.com/apache/metron/tree/master/metron-deployment/packaging/docker/rpm-docker],
but it doesn't work because the order of the modules inside the pom.xml does
not build everything necessary prior to the docker script execution.
Current order:
<modules>
<module>metron-analytics</module>
<module>metron-platform</module>
<module>metron-deployment</module>
<module>metron-contrib</module>
<module>metron-interface</module>
<module>site-book</module>
<module>metron-stellar</module>
</modules>
Order that works:
<modules>
<module>metron-analytics</module>
<module>metron-platform</module>
<module>metron-contrib</module>
<module>metron-interface</module>
<module>site-book</module>
<module>metron-stellar</module>
<module>metron-deployment</module>
</modules>
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)