Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
Closes #92
  • Loading branch information
passy committed Aug 11, 2018
1 parent 20092e7 commit a039e65
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.markdown
Expand Up @@ -18,7 +18,16 @@ How much time do you spend each day waiting for Gradle? Now you know!

## Usage

Apply the plugin in your `build.gradle`:
Apply the plugin in your `build.gradle`. On Gradle >2.1 you can do this
using the Plugin DSL Syntax:

```groovy
plugins {
id "net.rdrei.android.buildtimetracker" version "0.11.0"
}
```

Otherwise, use it as `classpath` dependency:

```groovy
buildscript {
Expand All @@ -32,7 +41,11 @@ buildscript {
}
apply plugin: "build-time-tracker"
```

Configure the plugin:

```groovy
buildtimetracker {
reporters {
csv {
Expand Down

0 comments on commit a039e65

Please sign in to comment.