From cd60bf256e668f077b3809778968fbe340128f26 Mon Sep 17 00:00:00 2001 From: CarmJos Date: Wed, 5 Jan 2022 05:09:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BE=9D=E8=B5=96=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f6d878f..175f060 100644 --- a/README.md +++ b/README.md @@ -148,10 +148,10 @@ repositories { dependencies { //对于需要提供公共接口的项目,可以仅打包API部分,方便他人调用 - compileOnly "cc.carm.lib:easysql-api:[LATEST RELEASE]" + api "cc.carm.lib:easysql-api:[LATEST RELEASE]" //如需自定义连接池,则可以仅打包实现部分,自行创建SQLManager - compileOnly "cc.carm.lib:easysql-impl:[LATEST RELEASE]" + api "cc.carm.lib:easysql-impl:[LATEST RELEASE]" } ``` @@ -166,10 +166,10 @@ dependencies { dependencies { //也可直接选择打包了连接池的版本 - - compileOnly "cc.carm.lib:easysql-beecp:[LATEST RELEASE]" - - compileOnly "cc.carm.lib:easysql-hikaricp:[LATEST RELEASE]" + + api "cc.carm.lib:easysql-beecp:[LATEST RELEASE]" + + api "cc.carm.lib:easysql-hikaricp:[LATEST RELEASE]" } ```