Skip to content

Commit 8832fa6

Browse files
committed
Release v1.0.2-9.2
1 parent 61cfe4e commit 8832fa6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Java Style Guide
2-
![Version](https://img.shields.io/badge/Latest%20Version-v1.0.1--9.1-blue)
2+
![Version](https://img.shields.io/badge/Latest%20Version-v1.0.2--9.2-blue)
33
![Checkstyle](https://img.shields.io/badge/Checkstyle%20Compatible-v9.2.1-green)
44

55
Java style guide built upon Sun Microsystems and Google style guides, widely accepted best practices. Is offered in
@@ -52,7 +52,7 @@ Then the plugin could be configured in the following way (for Maven):
5252
</dependency>
5353
</dependencies>
5454
<configuration>
55-
<configLocation>https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.1-9.1/checkstyle.xml</configLocation>
55+
<configLocation>https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.2-9.2/checkstyle.xml</configLocation>
5656
<encoding>UTF-8</encoding>
5757
<consoleOutput>true</consoleOutput>
5858
<failsOnError>true</failsOnError>
@@ -69,7 +69,7 @@ Checkstyle allows the definition of a list of files and their line ranges that s
6969
Update the plugin configuration like that:
7070
```xml
7171
<configuration>
72-
<configLocation>https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.1-9.1/checkstyle.xml</configLocation>
72+
<configLocation>https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.2-9.2/checkstyle.xml</configLocation>
7373
<encoding>UTF-8</encoding>
7474
<consoleOutput>true</consoleOutput>
7575
<failsOnError>true</failsOnError>
@@ -101,8 +101,8 @@ plugins {
101101
}
102102
103103
checkstyle {
104-
toolVersion '8.42'
105-
config project.resources.text.fromUri(new URI("https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.1-9.1/checkstyle.xml"))
104+
toolVersion '9.2.1'
105+
config project.resources.text.fromUri(new URI("https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.2-9.2/checkstyle.xml"))
106106
}
107107
```
108108
Be aware of current versions or any compitible versions.
@@ -113,8 +113,8 @@ When this style guide is changed, its version increases, it follows semver logic
113113
version of Checkstyle this style guide is compatible, the corresponding version of Checkstyle is stated in the version of
114114
the style guide.
115115

116-
For example, if the style guide has version `1.0.1` and it is compatible with Checkstyle version `9.1`, then the version
117-
of Checkstyle file will be `v1.0.1-9.1`.
116+
For example, if the style guide has version `1.0.2` and it is compatible with Checkstyle version `9.2`, then the version
117+
of Checkstyle file will be `v1.0.2-9.2`.
118118

119119
## Style Guide
120120

0 commit comments

Comments
 (0)