diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad50bc3557beeea4ecc86a6977f2cb82934109d..305a55862c0dc00b1c23a6bcca4496a149f45c93 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 b64c7ba057a7d09dcfd424020b4bdd0508dc666e..e5d18821b86fba35d6543c0ac6494ae0a3154a2b 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 f0c73f75841a46b558f59b3d99e82c8f916c5dd3..27e591c1f39cd6ba700af5afc57c0a2922df3269 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 589e9fba18a0527aceeecaf0365431e58e4db0bd..18e7fac121106bea49948720ca9961eb020a92c6 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 ccfd2eae16c276e67a1e88e62a0e73a788152d44..1e923c0dc7356616c0d22123dc01f86c1bf7d406 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 d219bdf0c34263e3ab3499c49cf48e4f5f1e647d..e0754e620d75bbbfd83d1a983e1d1585b20c3584 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' }