Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilJay authored Aug 5, 2019
1 parent c6ea858 commit 11bc073
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,40 @@
[![Release](https://img.shields.io/github/release/PhilJay/rrule.svg?style=flat)](https://jitpack.io/#PhilJay/rrule)


# RRule
Kotlin implementation for handling iCalendar (RFC 5545) recurrence rules

## Dependency

Add the following to your **build.gradle** file:
```groovy
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.PhilJay:rrule:1.0.0'
}
```

Or add the following to your **pom.xml**:

```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependency>
<groupId>com.github.PhilJay</groupId>
<artifactId>rrule</artifactId>
<version>1.0.0</version>
</dependency>
```

## Sample Usage

Expand Down

0 comments on commit 11bc073

Please sign in to comment.