diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c2aa08a8d6832f11be41e0ed0de6445d68ab47..472cf81921bda83ae33738b96021b5ccdc5117f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.0 + ohos 正式版 ## 0.0.2-SNAPSHOT ohos 第二个版本 * 更新sdk6 diff --git a/README.md b/README.md index c4a382b3d008956394737e79316b265e32b8345a..1f25474b34adcf5b21de5de1d312a1e6a88a165b 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ allprojects { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } - maven { - url 'http://106.15.92.248:8081/repository/Releases/' +maven { + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -38,7 +38,7 @@ allprojects { dependencies { implementation 'com.enrique.stackblur.ohos:library:1.0.0' - implementation 'com.gitee.chinasoft_ohos:blurkit-ohos:0.0.2-SNAPSHOT' + implementation'com.gitee.chinasoft_ohos:blurkit-ohos:1.0.0' } ``` @@ -107,7 +107,7 @@ CloudTest代码测试无异常 病毒安全检测通过 ## 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 ## 版权和许可信息 diff --git a/build.gradle b/build.gradle index 8c7f594fc76b06bcfb96772bea60d19441e28d42..6fcd2cfee36ca315439c4990478da623103b5287 100644 --- a/build.gradle +++ b/build.gradle @@ -33,7 +33,7 @@ allprojects { url 'https://developer.huawei.com/repo/' } maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } maven { url 'http://106.15.92.248:8081/repository/Releases/' diff --git a/entry/build.gradle b/entry/build.gradle index 8a40fd0d651436f0a9e70c02041b5d113cd13b95..3345f47f26abf7f5279d91092d8f33db0ae12538 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' - implementation('com.gitee.chinasoft_ohos:blurkit-ohos:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:blurkit-ohos:1.0.0') //本地依赖 // implementation project(path:':blurkit') }