11# Java Style Guide
2- ![ Version] ( https://img.shields.io/badge/Latest%20Version-v1.0.0 --9.1-blue )
2+ ![ Version] ( https://img.shields.io/badge/Latest%20Version-v1.0.1 --9.1-blue )
33![ Checkstyle] ( https://img.shields.io/badge/Checkstyle%20Compatible-v9.1-green )
44
55Java 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.0 -9.1/checkstyle.xml</configLocation >
55+ <configLocation >https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.1 -9.1/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
6969Update the plugin configuration like that:
7070``` xml
7171<configuration >
72- <configLocation >https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.0 -9.1/checkstyle.xml</configLocation >
72+ <configLocation >https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.1 -9.1/checkstyle.xml</configLocation >
7373 <encoding >UTF-8</encoding >
7474 <consoleOutput >true</consoleOutput >
7575 <failsOnError >true</failsOnError >
@@ -102,7 +102,7 @@ plugins {
102102
103103checkstyle {
104104 toolVersion '8.42'
105- config project.resources.text.fromUri(new URI("https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.0-8.45 /checkstyle.xml"))
105+ config project.resources.text.fromUri(new URI("https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.1-9.1 /checkstyle.xml"))
106106}
107107```
108108Be 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
113113version of Checkstyle this style guide is compatible, the corresponding version of Checkstyle is stated in the version of
114114the style guide.
115115
116- For example, if the style guide has version ` 1.0.0 ` and it is compatible with Checkstyle version ` 9.1 ` , then the version
117- of Checkstyle file will be ` v1.0.0 -9.1 ` .
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 ` .
118118
119119## Style Guide
120120
0 commit comments