1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>JonLandrum.com</title>
- <style type="text/css">
- code {
- font-family: "DejaVu Sans Mono",
- Menlo,
- Consolas,
- "Liberation Mono",
- Monaco,
- "Lucida Console",
- monospace;
- }
- </style>
- </head>
- <body>
- <header>
- <h1><code>com.jonlandrum.collections</code></h1>
- <hr />
- </header>
- <p>This is a collection of collections. Starting with the most basic
- collections, Binary Search Trees, this <code>git</code>
- repository will eventually house more esoteric collections as I
- add them.</p>
- <p>The <code>git</code> repository can be found here:
- <a href="https://github.com/jonlandrum/collections"
- title="com.jonlandrum.collections on GitHub">
- <code>com.jonlandrum.collections</code>
- on GitHub
- </a>,
- and the project files are hosted on the Maven Central Repository:
- <a href="https://search.maven.org/#artifactdetails%7Ccom.jonlandrum%7Ccollections%7C1.0%7C"
- title="com.jonlandrum.collections in the Maven Central Repository">
- <code>com.jonlandrum.collections</code>
- in the Maven Central Repository
- </a>.
- </p>
- <h2>Usage</h2>
- <p>To add the dependency to your project, include the dependency in
- your <code>pom.xml</code> file:</p>
- <p><code><pre><dependency>
- <groupId>com.jonlandrum</groupId>
- <artifactId>collections</artifactId>
- <version>1.0</version>
- </dependency></pre></code></p>
- <footer>
- <hr />
- <address>
- Copyright © 2017 Jonathan Landrum. All rights reserved.
- </address>
- </footer>
- </body>
- </html>
|