上传Maven

This commit is contained in:
董宏宇
2021-02-01 15:14:35 +08:00
parent 8cd9319939
commit fd1bbbca88
6 changed files with 20 additions and 18 deletions

View File

@@ -28,15 +28,16 @@ android {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation project(path: ':foudations:mogo-passport')
api rootProject.ext.dependencies.spi
if (Boolean.valueOf(RELEASE)) {
implementation "com.mogo.cloud:network:${MOGO_NETWORK_VERSION}"
implementation "com.mogo.cloud:socket:${MOGO_SOCKET_VERSION}"
} else {
implementation project(":foudations:mogo-socket")
implementation project(":foudations:mogo-network")
implementation project(":foudations:mogo-socket")
}
}
}
apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString()

View File

@@ -40,7 +40,7 @@ dependencies {
if (Boolean.valueOf(RELEASE)) {
implementation "com.mogo.cloud:network:${MOGO_NETWORK_VERSION}"
} else {
implementation project(path: ':foudations:mogo-network')
implementation project(':foudations:mogo-network')
}
}