2017-01-13 19:36:21 +00:00
|
|
|
<?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>
|
2017-01-14 20:25:24 +00:00
|
|
|
<version>2.0.4</version>
|
2017-01-13 19:36:21 +00:00
|
|
|
|
|
|
|
<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>
|
2017-01-14 17:15:45 +00:00
|
|
|
<version>${project.version}</version>
|
2017-01-13 19:36:21 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
2017-01-14 17:04:18 +00:00
|
|
|
<goal>2-naming</goal>
|
2017-01-13 19:36:21 +00:00
|
|
|
</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>
|
2017-01-14 18:58:24 +00:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>sonatype-nexus-snapshots</id>
|
|
|
|
<name>Sonatype Nexus Snapshots</name>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-nexus-staging</id>
|
|
|
|
<name>Nexus Release Repository</name>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2017-01-13 19:36:21 +00:00
|
|
|
</project>
|