Skip to content

Commit db6f1f6

Browse files
committed
Change link paths to a new name of the repository
1 parent 7e2978f commit db6f1f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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/checkstyle/v1.0.0-9.0/checkstyle.xml</configLocation>
55+
<configLocation>https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.0-9.0/checkstyle.xml</configLocation>
5656
<encoding>UTF-8</encoding>
5757
<consoleOutput>true</consoleOutput>
5858
<failsOnError>true</failsOnError>
@@ -63,13 +63,13 @@ Then the plugin could be configured in the following way (for Maven):
6363
```
6464
Be aware of current versions.
6565

66-
### Supressions
66+
### Suppressions
6767
Checkstyle allows the definition of a list of files and their line ranges that should be suppressed from reporting any violations see [Using a Suppressions Filter](https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/suppressions-filter.html).
6868

6969
Update the plugin configuration like that:
7070
```xml
7171
<configuration>
72-
<configLocation>https://raw.githubusercontent.com/pepperkit/checkstyle/v1.0.0-9.0/checkstyle.xml</configLocation>
72+
<configLocation>https://raw.githubusercontent.com/pepperkit/java-style-guide/v1.0.0-9.0/checkstyle.xml</configLocation>
7373
<encoding>UTF-8</encoding>
7474
<consoleOutput>true</consoleOutput>
7575
<failsOnError>true</failsOnError>
@@ -102,7 +102,7 @@ plugins {
102102
103103
checkstyle {
104104
toolVersion '8.42'
105-
config project.resources.text.fromUri(new URI("https://raw.githubusercontent.com/pepperkit/checkstyle/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.0-8.45/checkstyle.xml"))
106106
}
107107
```
108108
Be aware of current versions or any compitible versions.

0 commit comments

Comments
 (0)