diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e4b5867dcccce6c5c1a6b6c2579dc38c28b5282..584604ca9a4bf71832db650b137cd5348e6944ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -## 0.0.2-SNAPSHOT +## 1.0.0 +生产版本 +## 0.0.2-SNAPSHOT ohos 第2个版本,修改了代码规范 ## 0.0.1-SNAPSHOT ohos 第1个版本,实现了原库的全部api \ No newline at end of file diff --git a/README.md b/README.md index ef34ee78f2124ec70c047d514d9f7926352ce9d3..91a45252317c17d7d8fae786b59abf091111b587 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } ``` 在entry模块中的build.gradle文件中添加 ``` dependencies { - implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:0.0.2-SNAPSHOT') + implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:1.0.0') ···· } ``` @@ -56,4 +56,4 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -> * 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 a4bbee50c84428507c792bf978676f0ff6fe17a8..9d4eb5c5f398e2c6be801e91e3533114eb16e702 100644 --- a/build.gradle +++ b/build.gradle @@ -27,7 +27,7 @@ buildscript { allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + 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 c89c86df548dcf892ee420ea23e74de622b713e8..14fa4704701ad28bf151d782b51a47379df46631 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,9 +20,11 @@ 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(':library') - implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:0.0.2-SNAPSHOT') + + //maven仓依赖 + implementation ('com.gitee.chinasoft_ohos:unifiedCircularProgress:1.0.0') } decc { supportType = ['html', 'xml']