From 9cfc93f2e09f01174c04b0bb3f2f33580f2fab5c Mon Sep 17 00:00:00 2001 From: xiongwengong Date: Thu, 30 Sep 2021 16:02:42 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 8 ++++---- entry/build.gradle | 6 ++++-- onabilityresult-compiler/build.gradle | 4 +++- onabilityresult/build.gradle | 3 ++- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2276434..24f311f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.0 +ohos 第3个版本,正式版 ## 0.0.2-SNAPSHOT ohos 第2个版本 * 更新sdk6 diff --git a/README.md b/README.md index 847859c..9a839e3 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -34,8 +34,8 @@ ``` dependencies { - implementation('com.gitee.chinasoft_ohos:onabilityresult:0.0.2-SNAPSHOT') - annotationProcessor('com.gitee.chinasoft_ohos:onabilityresult-compiler:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:onabilityresult:1.0.1') + annotationProcessor('com.gitee.chinasoft_ohos:onabilityresult-compiler:1.0.1') ...... } ``` @@ -105,7 +105,7 @@ CloudTest代码测试无异常 ## 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.0 ## 版权和许可信息 ``` diff --git a/entry/build.gradle b/entry/build.gradle index 81a2bec..75d833d 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -23,11 +23,13 @@ dependencies { // 本地依赖 // implementation project(':onabilityresult') +// implementation project(':onabilityresult-annotations') // annotationProcessor project(':onabilityresult-compiler') // maven远程依赖 - implementation('com.gitee.chinasoft_ohos:onabilityresult:0.0.2-SNAPSHOT') - annotationProcessor('com.gitee.chinasoft_ohos:onabilityresult-compiler:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:onabilityresult:1.0.1') + annotationProcessor('com.gitee.chinasoft_ohos:onabilityresult-compiler:1.0.1') + implementation('com.gitee.chinasoft_ohos:onabilityresult-annotations:1.0.0') } decc { supportType = ['html', 'xml'] diff --git a/onabilityresult-compiler/build.gradle b/onabilityresult-compiler/build.gradle index 369d583..4cb49fd 100644 --- a/onabilityresult-compiler/build.gradle +++ b/onabilityresult-compiler/build.gradle @@ -3,8 +3,10 @@ apply plugin: 'java-library' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - api project(':onabilityresult-annotations') +// api project(':onabilityresult-annotations') + implementation('com.gitee.chinasoft_ohos:onabilityresult-annotations:1.0.0') api('com.squareup:javapoet:1.10.0') + implementation 'javax.annotation:javax.annotation-api:1.3.2' } sourceCompatibility = "1.8" diff --git a/onabilityresult/build.gradle b/onabilityresult/build.gradle index 66ee96e..a17b512 100644 --- a/onabilityresult/build.gradle +++ b/onabilityresult/build.gradle @@ -18,5 +18,6 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'junit:junit:4.13' - api project(':onabilityresult-annotations') +// api project(':onabilityresult-annotations') + implementation('com.gitee.chinasoft_ohos:onabilityresult-annotations:1.0.0') } -- Gitee From 1227ba08f99ed895d05452ec1f671c3aa1126f53 Mon Sep 17 00:00:00 2001 From: xiongwengong Date: Thu, 30 Sep 2021 16:03:47 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c49d4b0..4897ddc 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/' } jcenter() } -- Gitee