From d01491f89e3ec6c982f07f8a7aa40abcfc6838e7 Mon Sep 17 00:00:00 2001 From: fjh Date: Wed, 7 Jul 2021 18:00:44 +0800 Subject: [PATCH] =?UTF-8?q?maven=E4=BB=93=E5=BA=93=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + entry/build.gradle | 5 ++--- library/build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0be8101..b97eeaf 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ dependencies { implementation('com.gitee.chinasoft_ohos:LogUtils:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:export_api:0.0.2-SNAPSHOT') ...... } diff --git a/entry/build.gradle b/entry/build.gradle index 70b39e9..accda18 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -18,9 +18,8 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har','*.so']) - // implementation('com.gitee.chinasoft_ohos:LogUtils:0.0.1-SNAPSHOT') - compile project(path: ':library') - compile project(path: ':export_api') + implementation('com.gitee.chinasoft_ohos:LogUtils:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:export_api:0.0.2-SNAPSHOT') implementation project(path: ':export_api') testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' diff --git a/library/build.gradle b/library/build.gradle index 31cbb37..44ea87e 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -11,5 +11,5 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar','*.har']) testCompile 'junit:junit:4.12' implementation 'org.jetbrains:annotations:15.0' - compile project(path: ':export_api') + implementation('com.gitee.chinasoft_ohos:export_api:0.0.2-SNAPSHOT') } -- Gitee