Update README and pom (#181)

* Provide more info in the README about versions
* Update Maven compiler plugin in POM and clean up
2 files changed
tree: ef210ec32655fcfced3a778cf5bfb4f2f062f5ba
  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:java

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########

The version of Accumulo is defined in pom.xml and the tour should work with the Accumulo versions:

  • 1.8.*
  • 1.9.*
  • 2.0.*

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