Skip to content

Commit

Permalink
Finish instructions and finnaly deploy release version to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandodev committed Aug 12, 2014
1 parent 2deaf7b commit da7ae4d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,25 @@ Default conditions to show:

## Installation

* Manually
It's very simple with gradle ;)

Create in your root project folder a folder called `libraries`.
Add `mavenCentral` as repository source:

Download the library folder and import it into your project and rename `library` to `EasyRatingDialog`.
```gradle
repositories {
mavenCentral()
}
```

Now, to setup with gradle, you need to do the following steps:
And finnaly add this line inside `dependencies { }` section:

```gradle
compile 'com.github.fernandodev.easyratingdialog:easyratingdialog:+'
```

1. In `gradle.settings` add: `':libraries:EasyRatingDialog'`
2. In `gradle.build` at `dependencies` add `compile project(':libraries:EasyRatingDialog')`
The `+` symbol indicates to gradle to get the latest version.

* Gradle Dependency: _**coming soon**_
* See the sample if there are any doubts.

## Using

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.0.0-SNAPSHOT
VERSION_NAME=1.0.0
VERSION_CODE=1
GROUP=com.github.fernandodev.easyratingdialog

Expand Down

0 comments on commit da7ae4d

Please sign in to comment.