Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
austinv11 committed Jun 1, 2020
1 parent 4dcc9c3 commit 3a7c11a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,24 @@ A simple annotation processor for wiring Java services. Simply enable annotation
This project has the same goal as [Google's AutoService](https://github.com/google/auto/tree/master/service) but this is much more
lightweight (only includes 3 classes and has no external dependencies).

It also supports gradle's incremental compilation feature.

## Usage
Add this project to your pom.xml as so:
```xml
<dependency>
<groupId>com.austinv11.servicer</groupId>
<artifactId>Servicer</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<optional>true</optional>
</dependency>
```

Or if you use gradle, add this project to your build.gradle as so:
```groovy
dependencies {
compileOnly 'com.austinv11.servicer:Servicer:1.0.2'
annotationProcessor 'com.austinv11.servicer:Servicer:1.0.2'
compileOnly 'com.austinv11.servicer:Servicer:1.0.3'
annotationProcessor 'com.austinv11.servicer:Servicer:1.0.3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

ext {
ver = '1.0.2'
ver = '1.0.3'
pkg = 'com.austinv11.servicer'
}

Expand Down

0 comments on commit 3a7c11a

Please sign in to comment.