From 726aa40b5132a22811fc7b76669b82b0b6c8d239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Mon, 1 Feb 2021 15:38:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9C=AC=E5=9C=B0=E8=AF=9D?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=E5=8F=AF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- foudations/mogo-network/build.gradle | 2 +- gradle.properties | 2 +- modules/mogo-tanlu/build.gradle | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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') } }