README.md: fix checkstyle configuration example
This commit is contained in:
parent
84cf3f9fb8
commit
afcbd11e3f
1 changed files with 40 additions and 18 deletions
58
README.md
58
README.md
|
@ -30,30 +30,52 @@ You need to include `checkstyle` as the version bundled with the `maven-checksty
|
||||||
<properties>
|
<properties>
|
||||||
<checkstyle.version>7.0</checkstyle.version>
|
<checkstyle.version>7.0</checkstyle.version>
|
||||||
<sevntu-checkstyle-maven-plugin.version>1.21.0</sevntu-checkstyle-maven-plugin.version>
|
<sevntu-checkstyle-maven-plugin.version>1.21.0</sevntu-checkstyle-maven-plugin.version>
|
||||||
<kemitix-checkstyle-ruleset.version>1.0.0</kemitix-checkstyle-ruleset.version>
|
<kemitix-checkstyle-ruleset.version>0.1.1</kemitix-checkstyle-ruleset.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
|
<artifactId>checkstyle</artifactId>
|
||||||
|
<version>${checkstyle.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.sevntu.checkstyle</groupId>
|
||||||
|
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
|
||||||
|
<version>${sevntu-checkstyle-maven-plugin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.kemitix</groupId>
|
||||||
|
<artifactId>kemitix-checkstyle-ruleset</artifactId>
|
||||||
|
<version>${kemitix-checkstyle-ruleset.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<configuration>
|
||||||
|
<configLocation>net/kemitix/checkstyle.xml</configLocation>
|
||||||
|
</configuration>
|
||||||
|
</dependencies>
|
||||||
|
</plugin><!-- maven-checkstyle-plugin -->
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
<dependencies>
|
<executions>
|
||||||
<dependency>
|
<execution>
|
||||||
<groupId>com.puppycrawl.tools</groupId>
|
<id>validate</id>
|
||||||
<artifactId>checkstyle</artifactId>
|
<phase>validate</phase>
|
||||||
<version>${checkstyle.version}</version>
|
<goals>
|
||||||
</dependency>
|
<goal>check</goal>
|
||||||
<dependency>
|
<goal>checkstyle</goal>
|
||||||
<groupId>com.github.sevntu.checkstyle</groupId>
|
</goals>
|
||||||
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
|
</execution>
|
||||||
<version>${sevntu-checkstyle-maven-plugin.version}</version>
|
</executions>
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.kemitix</groupId>
|
|
||||||
<artifactId>kemitix-checkstyle-ruleset</artifactId>
|
|
||||||
<version>${kemitix-checkstyle-ruleset.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</plugin><!-- maven-checkstyle-plugin -->
|
</plugin><!-- maven-checkstyle-plugin -->
|
||||||
|
</plugins>
|
||||||
````
|
````
|
||||||
|
|
||||||
## All Checks
|
## All Checks
|
||||||
|
|
Loading…
Reference in a new issue