I wanted to add hbase and giraph-hbase dependencies to giraph-example module. I realized that I should specify scope for each to get the into the resulting giraph-example.jar.
<dependency>
<groupId>org.apache.giraph</groupId>
<artifactId>giraph-hbase</artifactId>
<version>1.1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<version>0.90.5</version>
<scope>compile</scope>
</dependency>
No comments:
Post a Comment