Tim te Beek
Tim te Beek
So there was an earlier attempt in #2387 which broke down due to issues migrating the `ModifiedClasspathRunner` tests. Might I suggest we start fresh not with a complete migration, but...
Think I might have [a start at replacing `lombok.val`](https://github.com/openrewrite/rewrite-migrate-java/pull/124), although there might be some limitations that I'm unaware about. Feel free to critique my approach. I figured since `lombok.val` is...
Would be good to also clean up [MavenWrapperDownloader.java](https://github.com/openrewrite/rewrite-maven-plugin/blob/main/.mvn/wrapper/MavenWrapperDownloader.java), as that get's left behind otherwise.
Had a quick look through [the Apache Maven Wrapper Mojo](https://github.com/apache/maven-wrapper/blob/master/maven-wrapper-plugin/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java#L136) for inspiration, as that already downloads, unpacks & replaces properties, in addition to removing Takari wrapper files. Would you recon...
Could you expand on that a bit @Tindome ? Would be nice to have your approach documented here at least.
Hmm; wasn't aware of this issue; this seems related for passing tracing data between Kafka & Spring Cloud: https://github.com/opentracing-contrib/java-kafka-client/issues/26 Any chance you can improve the current integration? The proposed workaround...
Came across this issue and made me toy around with writing a plugin / runner in hopes it helps: ```java import io.cucumber.core.event.*; import java.util.Map; import java.util.TreeMap; public class StepDiscoveryPlugin implements...
@laeubi could the above help in the eclipse plugin development? I'm unfamiliar with IDE plugin development constraints, but it would seem to me you have all the parts to make...
JUnit 5.7.0 has been released, with notable new addition: https://junit.org/junit5/docs/5.7.0/release-notes/ * New FilePosition support in FileSelector and ClasspathResourceSelector. I believe that was what was needed for this issue to continue;...
So @mpkorstanje just added the new FilePosition handling in https://github.com/cucumber/cucumber-jvm/pull/2121 ; Would that be enough to continue with the cucumber-eclipse plugin @laeubi / @qvdk ?