| 
218 | 218 |     <maven.versions.plugin.version>2.19.1</maven.versions.plugin.version>  | 
219 | 219 |     <maven.compiler.plugin.version>3.14.1</maven.compiler.plugin.version>  | 
220 | 220 |     <checkstyle.skipCompileInputResources>true</checkstyle.skipCompileInputResources>  | 
221 |  | -    <checkstyle.openrewrite.version>1.0.0-SNAPSHOT</checkstyle.openrewrite.version>  | 
222 |  | -    <rewrite-migrate-java.version>3.20.0</rewrite-migrate-java.version>  | 
223 |  | -    <rewrite-static-analysis.version>2.20.0</rewrite-static-analysis.version>  | 
224 | 221 |     <java.version>17</java.version>  | 
225 | 222 |     <next.java.version>21</next.java.version>  | 
226 | 223 |     <maven.compiler.release>${java.version}</maven.compiler.release>  | 
 | 
625 | 622 |             </upToDateChecking>  | 
626 | 623 |           </configuration>  | 
627 | 624 |         </plugin>  | 
 | 625 | +        <plugin>  | 
 | 626 | +          <groupId>org.openrewrite.maven</groupId>  | 
 | 627 | +          <artifactId>rewrite-maven-plugin</artifactId>  | 
 | 628 | +          <version>6.21.1</version>  | 
 | 629 | +          <configuration>  | 
 | 630 | +            <exportDatatables>true</exportDatatables>  | 
 | 631 | +            <skipMavenParsing>true</skipMavenParsing>  | 
 | 632 | +            <activeRecipes>  | 
 | 633 | +              <recipe>org.checkstyle.AutoFixes</recipe>  | 
 | 634 | +            </activeRecipes>  | 
 | 635 | +            <exclusions>  | 
 | 636 | +              <exclusion>**.ci-temp**</exclusion>  | 
 | 637 | +              <exclusion>**/resources-noncompilable/**</exclusion>  | 
 | 638 | +              <exclusion>**AvoidEscapedUnicodeCharactersCheckTest.java</exclusion>  | 
 | 639 | +              <exclusion>**FinalClassCheck.java</exclusion>  | 
 | 640 | +              <exclusion>**src/it/resources**</exclusion>  | 
 | 641 | +              <exclusion>**src/test/resources**</exclusion>  | 
 | 642 | +              <exclusion>**xdocs-examples**</exclusion>  | 
 | 643 | +            </exclusions>  | 
 | 644 | +            <plainTextMasks>  | 
 | 645 | +              <plainTextMask>**/*.xml</plainTextMask>  | 
 | 646 | +              <plainTextMask>**/*.yml</plainTextMask>  | 
 | 647 | +              <plainTextMask>**/*.groovy</plainTextMask>  | 
 | 648 | +              <plainTextMask>**/resources/**</plainTextMask>  | 
 | 649 | +              <plainTextMask>**/resources-noncompilable/**</plainTextMask>  | 
 | 650 | +            </plainTextMasks>  | 
 | 651 | +          </configuration>  | 
 | 652 | +          <dependencies>  | 
 | 653 | +            <dependency>  | 
 | 654 | +              <groupId>org.openrewrite.recipe</groupId>  | 
 | 655 | +              <artifactId>rewrite-migrate-java</artifactId>  | 
 | 656 | +              <version>3.20.0</version>  | 
 | 657 | +            </dependency>  | 
 | 658 | +            <dependency>  | 
 | 659 | +              <groupId>org.openrewrite.recipe</groupId>  | 
 | 660 | +              <artifactId>rewrite-java-security</artifactId>  | 
 | 661 | +              <version>3.20.0</version>  | 
 | 662 | +            </dependency>  | 
 | 663 | +            <dependency>  | 
 | 664 | +              <groupId>org.openrewrite.recipe</groupId>  | 
 | 665 | +              <artifactId>rewrite-static-analysis</artifactId>  | 
 | 666 | +              <version>2.20.0</version>  | 
 | 667 | +            </dependency>  | 
 | 668 | +            <dependency>  | 
 | 669 | +              <groupId>org.openrewrite.recipe</groupId>  | 
 | 670 | +              <artifactId>rewrite-rewrite</artifactId>  | 
 | 671 | +              <version>0.14.0</version>  | 
 | 672 | +            </dependency>  | 
 | 673 | +          </dependencies>  | 
 | 674 | +        </plugin>  | 
628 | 675 |         <plugin>  | 
629 | 676 |           <groupId>org.apache.maven.plugins</groupId>  | 
630 | 677 |           <artifactId>maven-pmd-plugin</artifactId>  | 
 | 
5506 | 5553 |           <plugin>  | 
5507 | 5554 |             <groupId>org.openrewrite.maven</groupId>  | 
5508 | 5555 |             <artifactId>rewrite-maven-plugin</artifactId>  | 
5509 |  | -            <version>6.22.1</version>  | 
5510 |  | -            <configuration>  | 
5511 |  | -              <exportDatatables>true</exportDatatables>  | 
5512 |  | -              <skipMavenParsing>true</skipMavenParsing>  | 
5513 |  | -              <activeRecipes>  | 
5514 |  | -                <recipe>org.checkstyle.CheckstyleAutoFix</recipe>  | 
5515 |  | -                <recipe>org.openrewrite.java.RemoveUnusedImports</recipe>  | 
5516 |  | -                <recipe>org.openrewrite.java.format.RemoveTrailingWhitespace</recipe>  | 
5517 |  | -                <recipe>org.openrewrite.java.migrate.UpgradeToJava17</recipe>  | 
5518 |  | -                <recipe>org.openrewrite.java.recipes.JavaRecipeBestPractices</recipe>  | 
5519 |  | -                <recipe>org.openrewrite.java.recipes.RecipeTestingBestPractices</recipe>  | 
5520 |  | -                <recipe>org.openrewrite.maven.BestPractices</recipe>  | 
5521 |  | -                <recipe>org.openrewrite.staticanalysis.EqualsAvoidsNull</recipe>  | 
5522 |  | -                <recipe>org.openrewrite.staticanalysis.JavaApiBestPractices</recipe>  | 
5523 |  | -                <recipe>org.openrewrite.staticanalysis.LowercasePackage</recipe>  | 
5524 |  | -                <recipe>org.openrewrite.staticanalysis.MissingOverrideAnnotation</recipe>  | 
5525 |  | -                <recipe>org.openrewrite.staticanalysis.ModifierOrder</recipe>  | 
5526 |  | -                <recipe>org.openrewrite.staticanalysis.NoFinalizer</recipe>  | 
5527 |  | -                <recipe>org.openrewrite.staticanalysis.RemoveUnusedLocalVariables</recipe>  | 
5528 |  | -                <recipe>org.openrewrite.staticanalysis.RemoveUnusedPrivateFields</recipe>  | 
5529 |  | -                <recipe>org.openrewrite.staticanalysis.RemoveUnusedPrivateMethods</recipe>  | 
5530 |  | -                <recipe>tech.picnic.errorprone.refasterrules.BigDecimalRulesRecipes</recipe>  | 
5531 |  | -                <recipe>tech.picnic.errorprone.refasterrules.CharSequenceRulesRecipes</recipe>  | 
5532 |  | -                <recipe>tech.picnic.errorprone.refasterrules.ClassRulesRecipes</recipe>  | 
5533 |  | -                <recipe>tech.picnic.errorprone.refasterrules.CollectionRulesRecipes</recipe>  | 
5534 |  | -                <recipe>tech.picnic.errorprone.refasterrules.ComparatorRulesRecipes</recipe>  | 
5535 |  | -                <recipe>tech.picnic.errorprone.refasterrules.FileRulesRecipes</recipe>  | 
5536 |  | -                <recipe>tech.picnic.errorprone.refasterrules.MicrometerRulesRecipes</recipe>  | 
5537 |  | -                <recipe>tech.picnic.errorprone.refasterrules.PatternRulesRecipes</recipe>  | 
5538 |  | -                <recipe>tech.picnic.errorprone.refasterrules.PreconditionsRulesRecipes</recipe>  | 
5539 |  | -                <recipe>tech.picnic.errorprone.refasterrules.PrimitiveRulesRecipes</recipe>  | 
5540 |  | -                <recipe>tech.picnic.errorprone.refasterrules.StreamRulesRecipes</recipe>  | 
5541 |  | -                <recipe>tech.picnic.errorprone.refasterrules.TimeRulesRecipes</recipe>  | 
5542 |  | -              </activeRecipes>  | 
5543 |  | -              <exclusions>  | 
5544 |  | -                <exclusion>**.ci-temp**</exclusion>  | 
5545 |  | -                <exclusion>**/resources-noncompilable/**</exclusion>  | 
5546 |  | -                <exclusion>**src/it/resources**</exclusion>  | 
5547 |  | -                <exclusion>**src/test/resources**</exclusion>  | 
5548 |  | -                <exclusion>**xdocs-examples**</exclusion>  | 
5549 |  | -              </exclusions>  | 
5550 |  | -              <plainTextMasks>  | 
5551 |  | -                <plainTextMask>**/*.xml</plainTextMask>  | 
5552 |  | -                <plainTextMask>**/*.yml</plainTextMask>  | 
5553 |  | -                <plainTextMask>**/*.groovy</plainTextMask>  | 
5554 |  | -                <plainTextMask>**/resources/**</plainTextMask>  | 
5555 |  | -                <plainTextMask>**/resources-noncompilable/**</plainTextMask>  | 
5556 |  | -              </plainTextMasks>  | 
5557 |  | -            </configuration>  | 
5558 | 5556 |             <dependencies>  | 
5559 | 5557 |               <dependency>  | 
5560 | 5558 |                 <groupId>com.puppycrawl.tools</groupId>  | 
5561 | 5559 |                 <artifactId>checkstyle-openrewrite-recipes</artifactId>  | 
5562 |  | -                <version>${checkstyle.openrewrite.version}</version>  | 
5563 |  | -              </dependency>  | 
5564 |  | -              <dependency>  | 
5565 |  | -                <groupId>org.openrewrite.recipe</groupId>  | 
5566 |  | -                <artifactId>rewrite-migrate-java</artifactId>  | 
5567 |  | -                <version>${rewrite-migrate-java.version}</version>  | 
5568 |  | -              </dependency>  | 
5569 |  | -              <dependency>  | 
5570 |  | -                <groupId>org.openrewrite.recipe</groupId>  | 
5571 |  | -                <artifactId>rewrite-static-analysis</artifactId>  | 
5572 |  | -                <version>${rewrite-static-analysis.version}</version>  | 
5573 |  | -              </dependency>  | 
5574 |  | -              <dependency>  | 
5575 |  | -                <groupId>org.openrewrite.recipe</groupId>  | 
5576 |  | -                <artifactId>rewrite-rewrite</artifactId>  | 
5577 |  | -                <version>0.14.1</version>  | 
 | 5560 | +                <version>1.0.0-SNAPSHOT</version>  | 
5578 | 5561 |               </dependency>  | 
5579 | 5562 |             </dependencies>  | 
5580 | 5563 |           </plugin>  | 
5581 | 5564 |         </plugins>  | 
5582 | 5565 |       </build>  | 
5583 | 5566 |     </profile>  | 
5584 |  | -    <profile>  | 
5585 |  | -      <id>spotless-autofix</id>  | 
5586 |  | -      <build>  | 
5587 |  | -        <plugins>  | 
5588 |  | -          <plugin>  | 
5589 |  | -            <groupId>com.diffplug.spotless</groupId>  | 
5590 |  | -            <artifactId>spotless-maven-plugin</artifactId>  | 
5591 |  | -          </plugin>  | 
5592 |  | -        </plugins>  | 
5593 |  | -      </build>  | 
5594 |  | -    </profile>  | 
5595 | 5567 |   </profiles>  | 
5596 | 5568 | </project>  | 
0 commit comments