Revert checkstyle plugin (#31)

This commit is contained in:
vitaxa 2021-01-22 16:37:20 +03:00 committed by GitHub
parent da34c4be16
commit b06cd4a702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
pom.xml
View File

@ -9,7 +9,7 @@
<packaging>pom</packaging>
<groupId>com.rbkmoney</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.8.EXPERIMENTAL</version>
<version>2.3.8</version>
<description>RBKmoney spring boot starter parent</description>
<name>RBKmoney spring boot starter parent</name>
<url>https://github.com/rbkmoney/spring-boot-starter-parent</url>
@ -44,7 +44,6 @@
<pubSnapRepo>https://oss.sonatype.org/content/repositories/snapshots</pubSnapRepo>
<pubStagingRepoId>ossrh</pubStagingRepoId>
<pubStagingRepo>https://oss.sonatype.org/</pubStagingRepo>
<checkstyle.config.path>rbkmoney_google_checkstyle.xml</checkstyle.config.path>
</properties>
<profiles>
@ -272,35 +271,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.1</version>
<dependencies>
<dependency>
<groupId>com.rbkmoney</groupId>
<artifactId>java-checkstyle-config</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>${checkstyle.config.path}</configLocation>
<encoding>UTF-8</encoding>
<failsOnError>true</failsOnError>
<consoleOutput>true</consoleOutput>
<violationSeverity>warning</violationSeverity>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>