Update for 2.0 (#202)

* Update version to 2.0 and maven exec plugin
* Use properties to create client
3 files changed
tree: 63591c771b7b5331474d9a95a2ba8602c5a8d1df
  1. src/
  2. .gitignore
  3. pom.xml
  4. README.md
README.md

Accumulo Tour

This git repository provides a barebones Maven+Java environment for the Accumulo Tour. As you go through the tour edit Main.java and use the following maven command to run your code. This command will execute Main.java with all of the correct dependencies on the classpath.

mvn -q clean compile exec:exec

The above command will compile the project and run a MiniAccumuloCluster.

MiniAccumuloCluster is a mini version of Accumulo that runs on your local filesystem. It should only be used for development purposes. Files and logs used by MiniAccumuloCluster can be seen in the generated directory:

target/mac########

This tour is designed for Accumulo version 2.*

Running mvn clean will remove any files created by previous runs.