Disabled the nohttp check by default

This commit is contained in:
Marcin Grzejszczak
2019-06-06 14:03:54 +02:00
parent 80eece2100
commit 20f213f59d

View File

@@ -90,6 +90,7 @@
${maven.multiModuleProjectDirectory}/src/checkstyle/checkstyle-suppressions.xml
</checkstyle.additional.suppressions.file>
<nohttp-checkstyle.version>0.0.1.BUILD-SNAPSHOT</nohttp-checkstyle.version>
<disable.nohttp.checks>true</disable.nohttp.checks>
</properties>
<dependencyManagement>
<dependencies>
@@ -450,10 +451,10 @@
<phase>validate</phase>
<inherited>true</inherited>
<configuration>
<skip>${disable.checks}</skip>
<skip>${disable.nohttp.checks}</skip>
<configLocation>${checkstyle.nohttp.file}</configLocation>
<includes>**/*</includes>
<excludes>**/.git/**/*,**/target/**/*,**/*.log</excludes>
<excludes>**/.idea/**/*,**/.git/**/*,**/target/**/*,**/*.log</excludes>
<sourceDirectories>./</sourceDirectories>
</configuration>
<goals>