Running mvn verify based on the instructions in the README results in this error
Could not resolve dependencies for project org.apache.parquet:parquet-thrift:jar:1.11.0: Could not find artifact com.hadoop.gplcompression:hadoop-lzo:jar:0.4.16
As a workaround, the local ~/.m2/settings.xml file can be modified to include the twitter maven repo:
<repository>
<id>twitter</id>
<name>twitter</name>
<url>http://maven.twttr.com</url>
</repository>
After adding this, mvn verify works. This should not be necessary though, since the artifact is a transitive dependency and the POM of the direct dependency (elephant-bird) contains the repo specification, which works in most environments.
Reporter: Andy Grove / @andygrove
Assignee: Andy Grove / @andygrove
Related issues:
PRs and other links:
Note: This issue was originally created as PARQUET-1556. Please see the migration documentation for further details.
Running
mvn verifybased on the instructions in the README results in this errorAs a workaround, the local
~/.m2/settings.xmlfile can be modified to include the twitter maven repo:After adding this,
mvn verifyworks. This should not be necessary though, since the artifact is a transitive dependency and the POM of the direct dependency (elephant-bird) contains the repo specification, which works in most environments.Reporter: Andy Grove / @andygrove
Assignee: Andy Grove / @andygrove
Related issues:
PRs and other links:
Note: This issue was originally created as PARQUET-1556. Please see the migration documentation for further details.