Add Sevntu-checkstyle diamond operator check

This commit is contained in:
Ville Skyttä 2016-06-14 00:18:58 +03:00 committed by Clebert Suconic
parent 3a3f678e58
commit 560ba1b39b
2 changed files with 17 additions and 0 deletions

View File

@ -107,5 +107,8 @@ under the License.
<property name="severity" value="ignore"/> <property name="severity" value="ignore"/>
</module> </module>
<!-- Sevntu checks, http://sevntu-checkstyle.github.io/sevntu.checkstyle/ -->
<module name="DiamondOperatorForVariableDefinition"/>
</module> </module>
</module> </module>

14
pom.xml
View File

@ -1062,6 +1062,11 @@
<artifactId>maven-checkstyle-plugin</artifactId> <artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version> <version>2.17</version>
<dependencies> <dependencies>
<dependency>
<groupId>com.github.sevntu.checkstyle</groupId>
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
<version>1.21.0</version>
</dependency>
<!-- This was initially done to enforce name on Parameter annotation <!-- This was initially done to enforce name on Parameter annotation
I've developed a customized check and I needed this jar to deploy the specialized checkstyle --> I've developed a customized check and I needed this jar to deploy the specialized checkstyle -->
<dependency> <dependency>
@ -1228,4 +1233,13 @@
</plugin> </plugin>
</plugins> </plugins>
</reporting> </reporting>
<pluginRepositories>
<pluginRepository>
<id>sevntu-maven</id>
<name>sevntu-maven</name>
<url>http://sevntu-checkstyle.github.io/sevntu.checkstyle/maven2</url>
</pluginRepository>
</pluginRepositories>
</project> </project>