Add Sevntu-Checkstyle support
Allows adding Sevntu checkstyle rules to your project's checkstyle.xml. No list of the provided Checks is available. The source code for each check contains documentation within the class Javadoc. Source code for checks: https://github.com/sevntu-checkstyle/sevntu.checkstyle/tree/master/sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks Latest Releases: https://github.com/sevntu-checkstyle/sevntu.checkstyle/releases Signed-off-by: Paul Campbell <paulcampbell@fife.ac.uk>
This commit is contained in:
parent
149c15e91f
commit
d242fe87f6
1 changed files with 13 additions and 0 deletions
13
pom.xml
13
pom.xml
|
@ -120,6 +120,14 @@
|
||||||
</profile><!-- release -->
|
</profile><!-- release -->
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>sevntu-maven</id>
|
||||||
|
<name>sevntu-maven</name>
|
||||||
|
<url>http://sevntu-checkstyle.github.io/sevntu.checkstyle/maven2</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -132,6 +140,11 @@
|
||||||
<artifactId>checkstyle</artifactId>
|
<artifactId>checkstyle</artifactId>
|
||||||
<version>6.14.1</version>
|
<version>6.14.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.sevntu.checkstyle</groupId>
|
||||||
|
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
|
||||||
|
<version>1.17.1</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin><!-- maven-checkstyle-plugin -->
|
</plugin><!-- maven-checkstyle-plugin -->
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
Loading…
Reference in a new issue