Description
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.4:stage (default-cli) on project tez-docs: Missing site information in the distribution management of the project Tez (org.apache.tez:tez-docs:0.10.1-SNAPSHOT) -> [Help 1]
From maven site plugin usage we can see we are missing configuration.
https://maven.apache.org/plugins/maven-site-plugin/usage.html
<project>
...
<distributionManagement>
<site>
<id>www.yourcompany.com</id>
<url>scp://www.yourcompany.com/www/docs/project/</url>
</site>
</distributionManagement>
...
</project>
Tez does not use this url to deploy and neither does hadoop. But it is needed to stage site documentation. url is only used during site:deploy which is never called during Tez QA step.
This jira aims to provide a place holder (the same as hadoop)