From 9c5b51187163ea62b166cf837130a578422c66ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E5=85=B4=E5=BD=A6?= <“herotculb@163.com”> Date: Mon, 27 Sep 2021 10:38:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=AD=A3=E5=BC=8F=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 ++++++--- build.gradle | 7 +++++-- entry/build.gradle | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 003437b..b76cded 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -30,7 +30,7 @@ allprojects { ``` dependencies { - implementation('com.gitee.chinasoft_ohos:secure-storage-ohos:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:secure-storage-ohos:1.0.0') } ``` @@ -447,5 +447,8 @@ CloudTest代码测试无异常 ### 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 + +#### 版权和许可信息 +- Apache License 2.0 diff --git a/build.gradle b/build.gradle index a4bbee5..6e408ea 100644 --- a/build.gradle +++ b/build.gradle @@ -19,13 +19,16 @@ buildscript { jcenter() } dependencies { - classpath 'com.huawei.ohos:hap:2.4.5.0' - classpath 'com.huawei.ohos:decctest:1.2.4.1' + classpath 'com.huawei.ohos:hap:2.4.5.5' + classpath 'com.huawei.ohos:decctest:1.2.5.1' } } allprojects { repositories { + maven { + url 'https://s01.oss.sonatype.org/content/repositories/releases/' + } maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } diff --git a/entry/build.gradle b/entry/build.gradle index 1c9e4bd..53f7239 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -18,7 +18,7 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - implementation('com.gitee.chinasoft_ohos:secure-storage-ohos:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:secure-storage-ohos:1.0.0') // implementation project(path: ':securestoragelibrary') testImplementation 'junit:junit:4.12' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' -- Gitee