1
mirror of https://github.com/CarmJos/EasySQL.git synced 2026-06-04 15:28:20 +08:00

添加依赖地址

This commit is contained in:
2022-01-05 05:09:49 +08:00
parent ebe68befee
commit cd60bf256e
+4 -4
View File
@@ -148,10 +148,10 @@ repositories {
dependencies { dependencies {
//对于需要提供公共接口的项目,可以仅打包API部分,方便他人调用 //对于需要提供公共接口的项目,可以仅打包API部分,方便他人调用
compileOnly "cc.carm.lib:easysql-api:[LATEST RELEASE]" api "cc.carm.lib:easysql-api:[LATEST RELEASE]"
//如需自定义连接池,则可以仅打包实现部分,自行创建SQLManager //如需自定义连接池,则可以仅打包实现部分,自行创建SQLManager
compileOnly "cc.carm.lib:easysql-impl:[LATEST RELEASE]" api "cc.carm.lib:easysql-impl:[LATEST RELEASE]"
} }
``` ```
@@ -167,9 +167,9 @@ dependencies {
//也可直接选择打包了连接池的版本 //也可直接选择打包了连接池的版本
compileOnly "cc.carm.lib:easysql-beecp:[LATEST RELEASE]" api "cc.carm.lib:easysql-beecp:[LATEST RELEASE]"
compileOnly "cc.carm.lib:easysql-hikaricp:[LATEST RELEASE]" api "cc.carm.lib:easysql-hikaricp:[LATEST RELEASE]"
} }
``` ```