43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<!-- don't use parent to avoid using grandparent's checkstyle configuration -->
|
|
<groupId>net.kemitix</groupId>
|
|
<artifactId>kemitix-checkstyle-ruleset-plugin-sample</artifactId>
|
|
<version>2.0.2</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.kemitix</groupId>
|
|
<artifactId>kemitix-checkstyle-ruleset-maven-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>2-naming</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>sevntu-maven</id>
|
|
<name>sevntu-maven</name>
|
|
<url>http://sevntu-checkstyle.github.io/sevntu.checkstyle/maven2</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|