NUPastry - Resilient Distributed Hash-Table

NUPastry is a resilient implementation of a Distributed Hash Table (DHT). It leverages the resilient algorithms presented in MSPastry and Bamboo.

Long Introduction

... TODO ...

Do You Need To Download NUPastry?

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>

Working With Eclipse

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