From b4c70346108f3cf0ba5af53f44e89b544b08f305 Mon Sep 17 00:00:00 2001 From: chenjianpeng Date: Thu, 23 Sep 2021 10:12:06 +0800 Subject: [PATCH] =?UTF-8?q?1,=E4=BF=AE=E6=94=B9=E5=85=B3=E9=94=AE=E5=AD=97?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 +++- README.md | 6 +++--- build.gradle | 3 +++ entry/build.gradle | 3 ++- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07e7edd..707a241 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ +## 1.0.0 +ohos 第三个版本 +- 正式版本 ## 0.0.2-SNAPSHOT ohos 第二个版本 * 修改CodeCheck问题 - ## 0.0.1-SNAPSHOT ohos 第一个版本 * 实现了原库的全部 api diff --git a/README.md b/README.md index c71e9a4..ee00841 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -27,7 +27,7 @@ 2.在entry模块的build.gradle文件中, ```gradle dependencies { - implementation('com.gitee.chinasoft_ohos:MathView:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:MathView_library:1.0.0') ...... } ``` @@ -87,4 +87,4 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.2-SNAPSHOT \ No newline at end of file +- 1.0.0 \ No newline at end of file diff --git a/build.gradle b/build.gradle index ca62356..b737fa0 100644 --- a/build.gradle +++ b/build.gradle @@ -26,6 +26,9 @@ buildscript { allprojects { repositories { + maven { + url 'https://s01.oss.sonatype.org/content/repositories/releases/' + } maven { url 'https://repo.huaweicloud.com/repository/maven/' } diff --git a/entry/build.gradle b/entry/build.gradle index 89aad40..5776318 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -21,7 +21,8 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' - implementation project(":MathView") +// implementation project(":MathView") + implementation('com.gitee.chinasoft_ohos:MathView_library:1.0.0') } decc { supportType = ['html','xml'] -- Gitee