Skip to content

Commit

Permalink
Enable nohttp-checkstyle (#206)
Browse files Browse the repository at this point in the history
While this Checkstyle configuration only flags `http://` usages in
Maven-managed source files (thus not in e.g. `pom.xml` or `README.md`
files), this is a low-effort improvement.
  • Loading branch information
Stephan202 authored Aug 22, 2022
1 parent b8e22ff commit 50aaf77
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,7 @@
<module name="VisibilityModifier" />
</module>
<module name="UniqueProperties" />
<module name="io.spring.nohttp.checkstyle.check.NoHttpCheck" />
</module>
</checkstyleRules>
<failOnViolation>false</failOnViolation>
Expand All @@ -771,6 +772,11 @@
<artifactId>checkstyle</artifactId>
<version>10.3.2</version>
</dependency>
<dependency>
<groupId>io.spring.nohttp</groupId>
<artifactId>nohttp-checkstyle</artifactId>
<version>0.0.10</version>
</dependency>
</dependencies>
<executions>
<execution>
Expand Down

0 comments on commit 50aaf77

Please sign in to comment.