NUPastry is a resilient implementation of a Distributed Hash Table (DHT). It leverages the resilient algorithms presented in MSPastry and Bamboo.
... TODO ...
If you use maven to manage your project, you won't need to download NUPastry by itself as maven will automatically take care for that. Just add the following dependency to your pom.xml.
<project> ... <dependencies> ... <dependency> <groupId>edu.nwu</groupId> <artifactId>nupastry</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> </dependencies> ... </project>
If you are using eclipse to develop your project, you might want instruct maven to fetch the sources for autocompletion as well:
mvn -Declipse.downloadSources=true eclipse:eclipse