Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ To use Timer Ninja, you need to do two things: add the `timer-ninja` dependency
### Add the Timer Ninja dependency
**Gradle**
```groovy
implementation group: 'io.github.thanglequoc', name: 'timer-ninja', version: '1.2.0'
implementation group: 'io.github.thanglequoc', name: 'timer-ninja', version: '1.3.0'
```

**Maven**
```xml
<dependency>
<groupId>io.github.thanglequoc</groupId>
<artifactId>timer-ninja</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -85,11 +85,11 @@ plugins {
dependencies {
// ...
// Timer ninja dependency
implementation group: 'io.github.thanglequoc', name: 'timer-ninja', version: '1.2.0'
aspect 'io.github.thanglequoc:timer-ninja:1.2.0'
implementation group: 'io.github.thanglequoc', name: 'timer-ninja', version: '1.3.0'
aspect 'io.github.thanglequoc:timer-ninja:1.3.0'

// Enable this if you want to track method in Test classes
testAspect("io.github.thanglequoc:timer-ninja:1.2.0")
testAspect("io.github.thanglequoc:timer-ninja:1.3.0")
}
```

Expand All @@ -111,7 +111,7 @@ Example project's `pom.xml`
<dependency>
<groupId>io.github.thanglequoc</groupId>
<artifactId>timer-ninja</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
Loading