From 439bfcb7d4c9232155b6538e0571935ecb40e936 Mon Sep 17 00:00:00 2001 From: duanluan Date: Sat, 11 Feb 2023 12:22:06 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- docs/docs/002-introduction.md | 12 ++++++------ docs/package.json | 2 +- pom.xml | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index a71ec80..fbe05e7 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ top.csaf ZUtil - 1.11.0 + 1.11.1 ``` @@ -43,9 +43,9 @@ ```groovy // groovy - implementation 'top.csaf:ZUtil:1.11.0' + implementation 'top.csaf:ZUtil:1.11.1' // kotlin - implementation("top.csaf:ZUtil:1.11.0") + implementation("top.csaf:ZUtil:1.11.1") ``` @@ -114,7 +114,7 @@ Mode 即为`org.openjdk.jmh.annotations.Mode`,分为: } } ``` - * Maven`test`进行测试,测试后会在`target`下生成`jacoco.exec`。 - * Maven`jacoco:report`生成代码覆盖率测试报告,在`target/site`目录下。 + * `mvn test -Dtest=要测试的类名`进行测试,测试后会在`target`下生成`jacoco.exec`。 + * `mvn jacoco:report`生成代码覆盖率测试报告,在`target/site`目录下。 * 查看更新的类或方法,覆盖率在 **90%** 以上时提交。 4. 提交时遵循 **[Angular 提交消息规范](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines)**,提交后新建 **pull request** 即可。 diff --git a/docs/docs/002-introduction.md b/docs/docs/002-introduction.md index dfda611..e50d462 100644 --- a/docs/docs/002-introduction.md +++ b/docs/docs/002-introduction.md @@ -8,7 +8,7 @@ top.csaf ZUtil - 1.11.0 + 1.11.1 ``` @@ -16,9 +16,9 @@ ```groovy // groovy -implementation 'top.csaf:ZUtil:1.11.0' +implementation 'top.csaf:ZUtil:1.11.1' // kotlin -implementation("top.csaf:ZUtil:1.11.0") +implementation("top.csaf:ZUtil:1.11.1") ``` ## 安装注意 @@ -32,7 +32,7 @@ implementation("top.csaf:ZUtil:1.11.0") top.csaf ZUtil - 1.11.0 + 1.11.1 org.slf4j @@ -65,7 +65,7 @@ implementation("top.csaf:ZUtil:1.11.0") // groovy dependencies { // 方式一:ZUtil 排除 slf4j - implementation('top.csaf:ZUtil:1.11.0') { + implementation('top.csaf:ZUtil:1.11.1') { exclude group: 'org.slf4j', module: 'slf4j-api' exclude group: 'org.slf4j', module: 'slf4j-simple' } @@ -78,7 +78,7 @@ dependencies { // kotlin dependencies { // 方式一:ZUtil 排除 slf4j - implementation("top.csaf:ZUtil:1.11.0") { + implementation("top.csaf:ZUtil:1.11.1") { exclude(group = "org.slf4j", module = "slf4j-api") exclude(group = "org.slf4j", module = "slf4j-simple") } diff --git a/docs/package.json b/docs/package.json index 7f0c3d5..ec8f602 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "zutil-docs", - "version": "1.11.0", + "version": "1.11.1", "private": true, "scripts": { "docusaurus": "docusaurus", diff --git a/pom.xml b/pom.xml index 6ad0e35..898c8c7 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ top.csaf ZUtil - 1.11.0 + 1.11.1 ZUtil https://github.com/duanluan/ZUtil -- GitLab