From eef2d425311f5231c73e9c414a40f49cc9f3f706 Mon Sep 17 00:00:00 2001 From: wjt983049539 Date: Thu, 29 Jul 2021 14:53:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BE=9D=E8=B5=96=E4=B8=BA?= =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 8 ++++---- build.gradle | 2 +- entry/build.gradle | 4 ++-- router_api/build.gradle | 2 +- router_compiler/build.gradle | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad50bc..305a558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.0 +正式版本 ## 0.0.2-SNAPSHOT ohos 第二个版本 * 更新sdk6 diff --git a/README.md b/README.md index b64c7ba..e5d1882 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -43,8 +43,8 @@ allprojects { ``` dependencies { - implementation 'com.gitee.chinasoft_ohos:router_api:0.0.2-SNAPSHOT' - annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:0.0.2-SNAPSHOT' + implementation 'com.gitee.chinasoft_ohos:router_api:1.0.0' + annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:1.0.0' ...... } ``` @@ -322,7 +322,7 @@ CloudTest代码测试无异常 ## 版本迭代 -0.0.2-SNAPSHOT +1.0.0 ## 版权和许可信息 diff --git a/build.gradle b/build.gradle index f0c73f7..27e591c 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://mirrors.huaweicloud.com/repository/maven/' diff --git a/entry/build.gradle b/entry/build.gradle index 589e9fb..18e7fac 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -11,8 +11,8 @@ 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:router_api:0.0.2-SNAPSHOT' - annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:0.0.2-SNAPSHOT' + implementation 'com.gitee.chinasoft_ohos:router_api:1.0.0' + annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:1.0.0' // 这是依赖本地方式 // annotationProcessor project(path:':router_compiler') // implementation project(path:':router_api') diff --git a/router_api/build.gradle b/router_api/build.gradle index ccfd2ea..1e923c0 100644 --- a/router_api/build.gradle +++ b/router_api/build.gradle @@ -10,5 +10,5 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - api'com.gitee.chinasoft_ohos:router_anno:0.0.1-SNAPSHOT' + api 'com.gitee.chinasoft_ohos:router_anno:1.0.0' } diff --git a/router_compiler/build.gradle b/router_compiler/build.gradle index d219bdf..e0754e6 100644 --- a/router_compiler/build.gradle +++ b/router_compiler/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'java-library' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) api 'com.squareup:javapoet:1.7.0' - api 'com.gitee.chinasoft_ohos:router_anno:0.0.1-SNAPSHOT' + api 'com.gitee.chinasoft_ohos:router_anno:1.0.0' implementation 'com.google.auto.service:auto-service:1.0-rc2' } -- Gitee