diff --git a/foudations/mogo-network/build.gradle b/foudations/mogo-network/build.gradle index 074fcc2..9ae7b11 100644 --- a/foudations/mogo-network/build.gradle +++ b/foudations/mogo-network/build.gradle @@ -54,7 +54,7 @@ dependencies { if (Boolean.valueOf(RELEASE)) { api "com.mogo.cloud:passport:${MOGO_PASSPORT_VERSION}" } else { - api project(':foudations:mogo-passport') + api project(path: ':foudations:mogo-passport') } } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 294e058..d0e7864 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,7 +23,7 @@ SNAPSHOT_REPOSITORY_URL=http://nexus.zhidaoauto.com/repository/maven-snapshots/ USERNAME=xintai PASSWORD=xintai2018 # 编译模式: false - 依赖本地版本, true - 依赖 maven 版本 -RELEASE=true +RELEASE=false # AI CLOUD 云平台 MOGO_NETWORK_VERSION=1.0.8-SNAPSHOT MOGO_HTTPDNS_VERSION=1.0.8-SNAPSHOT diff --git a/modules/mogo-tanlu/build.gradle b/modules/mogo-tanlu/build.gradle index f975631..6db1072 100644 --- a/modules/mogo-tanlu/build.gradle +++ b/modules/mogo-tanlu/build.gradle @@ -38,9 +38,9 @@ dependencies { implementation rootProject.ext.dependencies.videoprocessor if (Boolean.valueOf(RELEASE)) { - implementation "com.mogo.cloud:network:${MOGO_NETWORK_VERSION}" + api "com.mogo.cloud:network:${MOGO_NETWORK_VERSION}" } else { - implementation project(':foudations:mogo-network') + api project(':foudations:mogo-network') } }