spt-checkstyle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.spt-oss</groupId>
<artifactId>spt-checkstyle</artifactId>
<version>8.15.0</version>
</dependency><?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>
<parent>
<groupId>com.github.spt-oss</groupId>
<artifactId>spt-oss-parent</artifactId>
<version>8.0.0</version>
</parent>
<artifactId>spt-checkstyle</artifactId>
<version>8.15.0</version>
<packaging>jar</packaging>
<name>SPT Checkstyle</name>
<description>Checkstyle configuration for SPT Java Style</description>
<url>https://github.com/spt-oss/spt-checkstyle</url>
<inceptionYear>2018</inceptionYear>
<scm>
<url>https://github.com/spt-oss/spt-checkstyle/tree/master</url>
<connection>scm:git:git@github.com:spt-oss/spt-checkstyle.git</connection>
<tag>8.15.0</tag>
</scm>
<properties>
<checkstyle.version>8.15</checkstyle.version>
<spring-boot.version>2.0.6.RELEASE</spring-boot.version>
</properties>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/staging</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>src/main/resources/spt/checkstyle/checks.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>gpg</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>