Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Updated Readme and top level gradle.properties to point to v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Anup Cowkur committed Feb 3, 2014
1 parent 86a62e9 commit c902832
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,22 +93,22 @@ try {
```
# Including in your project

You can directly [download the jar](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/reservoir-1.1.jar) and add it to your project. You will also need to add the jars on which Reservoir depends i.e. [DiskLruCache](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/disklrucache-2.0.2.jar), [Apache Commons IO](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/commons-io-2.4.jar) and [GSON](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/gson-2.2.4.jar).
You can directly [download the jar](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/reservoir-1.1.1.jar) and add it to your project. You will also need to add the jars on which Reservoir depends i.e. [DiskLruCache](https://github.com/anupcowkur/Reservoir/releases/download/v1.1.1/disklrucache-2.0.2.jar), [Apache Commons IO](https://github.com/anupcowkur/Reservoir/releases/download/v1.1.1/commons-io-2.4.jar) and [GSON](https://github.com/anupcowkur/Reservoir/releases/download/v1.1.1/gson-2.2.4.jar).

If you use Maven:

```xml
<dependency>
<groupId>com.github.anupcowkur</groupId>
<artifactId>reservoir</artifactId>
<version>1.1</version>
<version>1.1.1</version>
</dependency>
```

or Gradle:

```groovy
compile 'com.github.anupcowkur:reservoir:1.1'
compile 'com.github.anupcowkur:reservoir:1.1.1'
```

# Sample
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=1.1
VERSION_CODE=2
VERSION_NAME=1.1.1
VERSION_CODE=3
GROUP=com.github.anupcowkur

POM_DESCRIPTION=Android library to easily serialize and persist your objects on disk using key/value pairs.
Expand Down

0 comments on commit c902832

Please sign in to comment.