Skip to content

Commit ba49e0c

Browse files
committed
leodpen<update> update README.
1 parent b5b0a76 commit ba49e0c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![GitHub license](https://img.shields.io/github/license/LEODPEN/BetterBuilder)](https://github.com/LEODPEN/BetterBuilder/blob/main/LICENSE)
44
![Build status](https://img.shields.io/badge/build-passing-brightgreen)
5-
[![Version](https://img.shields.io/badge/version-1.0.2-orange)](https://github.com/LEODPEN/BetterBuilder/releases)
5+
[![Version](https://img.shields.io/badge/version-1.0.8-orange)](https://github.com/LEODPEN/BetterBuilder/releases)
66
---
77
BetterBuilder is a [Java annotation processor](https://docs.oracle.com/javase/8/docs/api/javax/annotation/processing/Processor.html) used for
88
automatically generating **better** builder codes([builder design pattern](https://en.wikipedia.org/wiki/Builder_pattern#Java)),
@@ -12,10 +12,10 @@ which can make coding much more comfortable.
1212

1313
+ [fluent get/set method](#fluentSet-switch)
1414
+ [configurable get/set](#field-ignore).
15-
+ [2 set type provided](#set-type)
15+
+ [2 set types provided](#set-type)
1616
+ 3 builder patterns provided:
1717
+ [no builder](#nobuilder-switch)
18-
+ classic
18+
+ [classic](#usage)
1919
+ [**type safe**](#type-safe-builder)
2020

2121

@@ -29,15 +29,15 @@ Download from [releases](https://github.com/LEODPEN/betterBuilder/releases).
2929
(Just add it to your classpath)
3030
### Maven
3131

32-
BetterBuilder(v1.0.2) has already been published to Central https://repo1.maven.org/maven2/.
32+
BetterBuilder(v1.0.8) has already been published to Central https://repo1.maven.org/maven2/.
3333

3434
Example Maven settings:
3535

3636
```xml
3737
<dependency>
3838
<groupId>cn.mpy634</groupId>
3939
<artifactId>BetterBuilder</artifactId>
40-
<version>1.0.2</version>
40+
<version>1.0.8</version>
4141
<scope>provided</scope>
4242
</dependency>
4343
```
@@ -177,7 +177,7 @@ public class TypeSafe {
177177
private Long PID79211;
178178
}
179179
```
180-
you can also see the detail files :
180+
You can also see the detail files :
181181
[type-safe](https://github.com/LEODPEN/BetterBuilder/blob/main/testModule/src/main/java/TypeSafe.java) and [type-safe-test](https://github.com/LEODPEN/BetterBuilder/blob/main/testModule/src/test/java/TypeSafeTest.java).
182182

183183
## Todo list

0 commit comments

Comments
 (0)