]
Diego Lovison reassigned ISPN-10149:
------------------------------------
Assignee: Diego Lovison
Keep only one checkstyle plugin configuration
---------------------------------------------
Key: ISPN-10149
URL:
https://issues.jboss.org/browse/ISPN-10149
Project: Infinispan
Issue Type: Bug
Reporter: Diego Lovison
Assignee: Diego Lovison
Priority: Major
Today the checkstyle configuration is duplicated or using a different configuration file
across multiple projects
For hibernate/pom.xml we have
{code:xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>checkstyle-hibernate-cache.xml</configLocation>
</configuration>
</plugin>
{code}
For hibernate/cache-v53/pom.xml and hibernate/cache-v51/pom.xml we have
{code:xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>
{code}