Skip to content

Commit

Permalink
Add badges and dependency info to README
Browse files Browse the repository at this point in the history
  • Loading branch information
NthPortal committed Sep 1, 2017
1 parent d2738e2 commit d6b252b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,39 @@
# convert
A Scala library for handling conversions between types by throwing exceptions or returning Options containing the results

[![Build Status](https://travis-ci.org/NthPortal/convert.svg?branch=master)](https://travis-ci.org/NthPortal/convert)
[![Coverage Status](https://coveralls.io/repos/github/NthPortal/convert/badge.svg?branch=master)](https://coveralls.io/github/NthPortal/convert?branch=master)
[![Maven Central](https://img.shields.io/maven-central/v/com.nthportal/convert_2.12.svg)](https://mvnrepository.com/artifact/com.nthportal/convert_2.12)
[![Versioning](https://img.shields.io/badge/versioning-semver%202.0.0-blue.svg)](http://semver.org/spec/v2.0.0.html)
[![Docs](https://www.javadoc.io/badge/com.nthportal/convert_2.12.svg?color=blue&label=docs)](https://www.javadoc.io/doc/com.nthportal/convert_2.12)


## Add as a Dependency

### SBT (Scala 2.11 and 2.12)

```sbtshell
"com.nthportal" %% "convert" % "0.1.0"
```

### Maven

**Scala 2.12**

```xml
<dependency>
<groupId>com.nthportal</groupId>
<artifactId>convert_2.12</artifactId>
<version>0.1.0</version>
</dependency>
```

**Scala 2.11**

```xml
<dependency>
<groupId>com.nthportal</groupId>
<artifactId>convert_2.11</artifactId>
<version>0.1.0</version>
</dependency>
```

0 comments on commit d6b252b

Please sign in to comment.