Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Verify that the maven artifacts are the right version by inspecting the top level pom.xml and looking at the version.
Verify that the release bits are the signed properly by running:
gpg --verify ./apache-metron-$VERSION-incubating.tar.gz.asc apache-metron-$VERSION-incubating.tar.gz
Step 1 – Build Metron

cd incubator-metron/
mvn clean install

Verify that all tests are passing

Step 2 – Deploy metron as a single VM via vagrant and ansible

cd metron-deployment/vagrant/full-dev-platform
vagrant plugin install vagrant-hostmanager
vagrant up

For a more complete set of instructions refer to:
https://github.com/apache/incubator-metron/tree/master/metron-deployment and 
https://github.com/apache/incubator-metron/tree/master/metron-deployment/vagrant/full-dev-platform

...