From 3a7c11a1f1f4cb27b23470a16e9d7920decf7d04 Mon Sep 17 00:00:00 2001 From: austinv11 Date: Mon, 1 Jun 2020 19:30:52 -0400 Subject: [PATCH] Bump version --- README.md | 8 +++++--- build.gradle | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b350658..b7fcea3 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,15 @@ 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 com.austinv11.servicer Servicer - 1.0.2 + 1.0.3 true ``` @@ -21,8 +23,8 @@ Add this project to your pom.xml as so: 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' } ``` diff --git a/build.gradle b/build.gradle index 7a8e63c..04ab57f 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } ext { - ver = '1.0.2' + ver = '1.0.3' pkg = 'com.austinv11.servicer' }