Details
Description
The OODT RADiX README [1] has misleading directions that misdirect a user into running the wrong commands. Specifically the command for building and extracting the RADiX tar-ball are combined when they really should not be.
e.g. mvn clean package <OPTIONAL PROFILES> -C /my/deployment/directory/oodt
will fail because 'mvn' does not have an extraction step, only the 'tar' command does. We should split the mvn build aand the tar extraction part into two separate steps.
something like:
1. mvn clean package <OPTIONAL PROFILES>
2. tar zxf distribution/target/${PROJECT_ARTIFACT_ID}distribution*-bin.tar.gz -C /my/deployment/directory/oodt