1
mirror of https://github.com/CarmJos/EasySQL.git synced 2024-09-19 21:35:47 +00:00

添加依赖地址

This commit is contained in:
Carm Jos 2022-01-05 05:09:49 +08:00
parent ebe68befee
commit cd60bf256e

View File

@ -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]"
}
```