1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# com.hypirion.io
Java library which contain I/O classes for those with specific needs. For the
API documentation, see <http://hypirion.github.com/com.hypirion.io/>.
## Usage
Add a dependency to your this in your Clojure/Java/Scala app, and off we go.
For Clojure, this can be done through
```clj
[com.hypirion/io "0.3.1"]
```
or, for Maven:
```
<dependency>
<groupId>com.hypirion</groupId>
<artifactId>io</artifactId>
<version>0.3.1</version>
</dependency>
```
also ensure that Clojars is added to your repositories:
```
<repository>
<id>clojars</id>
<url>http://clojars.org/repo/</url>
</repository>
```
## License
Copyright © 2013 Jean Niklas L'orange
Distributed under the Eclipse Public License, the same as Clojure.
|