提交 439bfcb7 编写于 作者: 勤为径苦作舟's avatar 勤为径苦作舟

style: 升级版本号

上级 057fe923
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<dependency> <dependency>
<groupId>top.csaf</groupId> <groupId>top.csaf</groupId>
<artifactId>ZUtil</artifactId> <artifactId>ZUtil</artifactId>
<version>1.11.0</version> <version>1.11.1</version>
</dependency> </dependency>
``` ```
...@@ -43,9 +43,9 @@ ...@@ -43,9 +43,9 @@
```groovy ```groovy
// groovy // groovy
implementation 'top.csaf:ZUtil:1.11.0' implementation 'top.csaf:ZUtil:1.11.1'
// kotlin // 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`,分为: ...@@ -114,7 +114,7 @@ Mode 即为`org.openjdk.jmh.annotations.Mode`,分为:
} }
} }
``` ```
* Maven`test`进行测试,测试后会在`target`下生成`jacoco.exec` * `mvn test -Dtest=要测试的类名`进行测试,测试后会在`target`下生成`jacoco.exec`
* Maven`jacoco:report`生成代码覆盖率测试报告,在`target/site`目录下。 * `mvn jacoco:report`生成代码覆盖率测试报告,在`target/site`目录下。
* 查看更新的类或方法,覆盖率在 **90%** 以上时提交。 * 查看更新的类或方法,覆盖率在 **90%** 以上时提交。
4. 提交时遵循 **[Angular 提交消息规范](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines)**,提交后新建 **pull request** 即可。 4. 提交时遵循 **[Angular 提交消息规范](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines)**,提交后新建 **pull request** 即可。
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<dependency> <dependency>
<groupId>top.csaf</groupId> <groupId>top.csaf</groupId>
<artifactId>ZUtil</artifactId> <artifactId>ZUtil</artifactId>
<version>1.11.0</version> <version>1.11.1</version>
</dependency> </dependency>
``` ```
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
```groovy ```groovy
// groovy // groovy
implementation 'top.csaf:ZUtil:1.11.0' implementation 'top.csaf:ZUtil:1.11.1'
// kotlin // 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") ...@@ -32,7 +32,7 @@ implementation("top.csaf:ZUtil:1.11.0")
<dependency> <dependency>
<groupId>top.csaf</groupId> <groupId>top.csaf</groupId>
<artifactId>ZUtil</artifactId> <artifactId>ZUtil</artifactId>
<version>1.11.0</version> <version>1.11.1</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
...@@ -65,7 +65,7 @@ implementation("top.csaf:ZUtil:1.11.0") ...@@ -65,7 +65,7 @@ implementation("top.csaf:ZUtil:1.11.0")
// groovy // groovy
dependencies { dependencies {
// 方式一:ZUtil 排除 slf4j // 方式一: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-api'
exclude group: 'org.slf4j', module: 'slf4j-simple' exclude group: 'org.slf4j', module: 'slf4j-simple'
} }
...@@ -78,7 +78,7 @@ dependencies { ...@@ -78,7 +78,7 @@ dependencies {
// kotlin // kotlin
dependencies { dependencies {
// 方式一:ZUtil 排除 slf4j // 方式一: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-api")
exclude(group = "org.slf4j", module = "slf4j-simple") exclude(group = "org.slf4j", module = "slf4j-simple")
} }
......
{ {
"name": "zutil-docs", "name": "zutil-docs",
"version": "1.11.0", "version": "1.11.1",
"private": true, "private": true,
"scripts": { "scripts": {
"docusaurus": "docusaurus", "docusaurus": "docusaurus",
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<groupId>top.csaf</groupId> <groupId>top.csaf</groupId>
<artifactId>ZUtil</artifactId> <artifactId>ZUtil</artifactId>
<version>1.11.0</version> <version>1.11.1</version>
<name>ZUtil</name> <name>ZUtil</name>
<url>https://github.com/duanluan/ZUtil</url> <url>https://github.com/duanluan/ZUtil</url>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册