Add an issues section to deal with common issues when building druid (#11271)

This commit is contained in:
Agustin Gonzalez 2021-05-21 09:04:51 -07:00 committed by GitHub
parent 403dcf5cfb
commit 4ba5738ffb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,3 +69,15 @@ Putting these together, if you wish to build the source and binary distributions
```bash
mvn clean install -Papache-release,dist,rat -DskipTests
```
#### Potential issues
##### Issue
You are building Druid from source following the instructions on this page but you get
```
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (generate-binary-license) on project distribution: Command execution failed.: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
```
Resolution: Make sure you have Python installed as well as the `yaml` module:
```
pip install pyyaml
```