From 573957c291288870fadc50e95a7ca9dcc0cc80f0 Mon Sep 17 00:00:00 2001 From: donghongyu Date: Mon, 8 Nov 2021 16:52:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BE=9D=E8=B5=96=E7=BC=BA?= =?UTF-8?q?=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: donghongyu --- .idea/misc.xml | 2 +- core/function-impl/mogo-core-function-map/build.gradle | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 69dd353cde..c8ae21910b 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -75,7 +75,7 @@ - + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-map/build.gradle b/core/function-impl/mogo-core-function-map/build.gradle index 522a2f928b..ab14ac4055 100644 --- a/core/function-impl/mogo-core-function-map/build.gradle +++ b/core/function-impl/mogo-core-function-map/build.gradle @@ -53,17 +53,21 @@ dependencies { implementation rootProject.ext.dependencies.adasHigh if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { + implementation rootProject.ext.dependencies.mogoserviceapi + implementation rootProject.ext.dependencies.modulecommon + implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_utils implementation rootProject.ext.dependencies.mogo_core_function_api implementation rootProject.ext.dependencies.mogo_core_function_call - implementation rootProject.ext.dependencies.modulecommon } else { + implementation project(':modules:mogo-module-common') + implementation project(':services:mogo-service-api') + implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') implementation project(':core:mogo-core-function-api') implementation project(':core:mogo-core-function-call') - implementation project(':modules:mogo-module-common') } }