I want to run a map reduce example:
package my.test; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Map.En
You have two easy options:
1) Build a fat jar, where your mt.jar file includes the hbase-0.94.0.jar (can be done with mvn package -Dfatjar )
mt.jar
hbase-0.94.0.jar
mvn package -Dfatjar
2) Use the GenericOptionsParser (I think you are trying to by implementing Tool) and then specify the -libjars parameter on the command line.
GenericOptionsParser
Tool