Skip to content

Commit 70ee199

Browse files
author
Vincent Potucek
committed
Pull #2292: Modernize codebase with Java improvements - functionalize DefaultModelProcessor#read
1 parent 0cd0f4e commit 70ee199

File tree

2 files changed

+26
-1
lines changed
  • its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test

2 files changed

+26
-1
lines changed

its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ under the License.
5555
<plugin>
5656
<groupId>org.apache.maven.plugins</groupId>
5757
<artifactId>maven-checkstyle-plugin</artifactId>
58-
<version>2.1</version>
58+
<version>3.6.0</version>
5959
<inherited>true</inherited>
6060
<executions>
6161
<execution>

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -799,6 +799,31 @@ under the License.</licenseText>
799799
</plugins>
800800
</pluginManagement>
801801
<plugins>
802+
<plugin>
803+
<groupId>org.openrewrite.maven</groupId>
804+
<artifactId>rewrite-maven-plugin</artifactId>
805+
<version>6.7.0</version>
806+
<configuration>
807+
<activeRecipes>
808+
<recipe>org.openrewrite.staticanalysis.CodeCleanup</recipe>
809+
</activeRecipes>
810+
</configuration>
811+
<dependencies>
812+
<dependency>
813+
<groupId>org.openrewrite.recipe</groupId>
814+
<artifactId>rewrite-static-analysis</artifactId>
815+
<version>2.8.0</version>
816+
</dependency>
817+
</dependencies>
818+
</plugin>
819+
<plugin>
820+
<groupId>org.apache.maven.plugins</groupId>
821+
<artifactId>maven-checkstyle-plugin</artifactId>
822+
<version>3.6.0</version>
823+
<configuration>
824+
<configLocation>checkstyle.xml</configLocation>
825+
</configuration>
826+
</plugin>
802827
<plugin>
803828
<groupId>io.github.olamy.maven.plugins</groupId>
804829
<artifactId>jacoco-aggregator-maven-plugin</artifactId>

0 commit comments

Comments
 (0)