From 7c05e159aa41d1f970d358da2081a2ec542f6f7d Mon Sep 17 00:00:00 2001 From: Zhenjie Yan Date: Fri, 3 Jul 2020 18:08:55 +0800 Subject: [PATCH] Update version description. --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1b3d9a2..5c85d23 100644 --- a/README.md +++ b/README.md @@ -101,8 +101,8 @@ server.shutdown(); ```gradle dependencies { - implementation 'com.yanzhenjie.andserver:api:2.1.1' - annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.1' + implementation 'com.yanzhenjie.andserver:api:2.1.2' + annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.2' ... } ``` @@ -117,14 +117,16 @@ Add the plugin to your project build script : ```gradle buildscript { - ... + repositories { + mavenCentral() + google() + } dependencies { + classpath 'com.yanzhenjie.andserver:plugin:2.1.2' ... - classpath 'com.yanzhenjie.andserver:plugin:2.1.1' } } - ... ```