Willem Cheizoo

Results 7 comments of Willem Cheizoo

I'm trying to figure out to find a workaround. The case is the following tree of recipes: ` Changes have been made to .....java by: org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_6 org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_5 org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_4 org.openrewrite.java.spring.boot2.SpringBoot2JUnit4to5Migration org.openrewrite.java.testing.junit5.JUnit4to5Migration...

I have the following two Java files in a project ```java import lombok.data; @Data class MyObject { String someField; } ``` ```java import static org.mockito.Mockito.when; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import...

Printing would became a must if the only workaround for lombok (#1297) would be to completely redefine a tree of declaritive recipes, just to exclude 1 specific recipe.

I still run into a lot issues with Lombok & OpenRewrite when one of the rules start upgrading JUnit 4 to JUnit 5 or JUnit asserts to AssertJ asserts. The...

Running the following command `mvn org.openrewrite.maven:rewrite-maven-plugin:4.39.0:run -Drewrite.activeRecipes=nl.fictive.bsp.UpgradeBspCoreLatest -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-java-security:1.21.0,org.openrewrite.recipe:rewrite-kubernetes:1.27.0,org.openrewrite.recipe:rewrite-logging-frameworks:1.17.0,org.openrewrite.recipe:rewrite-migrate-java:1.16.0,org.openrewrite.recipe:rewrite-spring:4.32.0,org.openrewrite.recipe:rewrite-testing-frameworks:1.33.0,nl.fictive.bsp:bsp-core-openrewrite-rules:7.7.1 -Drewrite.exclusions=**api**.yaml` On the folliwing Java file: ```java package nl.fictive.bsp.capability.serviceinzicht.service.client.notificatiebeheer; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.eq; import...

@timtebeek I hope this helps a little

I tried the command with all the latest components released this morning with the same result.