k3code06
k3code06
I have also tried using the latest version (6.1.19) and still having the same error. What's the recommended gradle version for this dependency? On running gradle build, this error comes...
Firstly, in the Maven plugin, it does not require JARs that contain recipes or other dependencies. Can't this be done in the Gradle plugin as well? Secondly, coming to my...
In our use case, I am using the Rewrite Gradle plugin in my project. The recipes that need to be added as dependencies of the Rewrite Gradle plugin are present...
In our use case, multiple new recipes will be added in the future, leading to continuous updates of the jar. Is there another way we can do this? Can we...
I am adding some tag in my declarative recipes and based on tags filtering the active recipes. Can you suggest the workaround for that?
So as per my usecase for a specific tag, order does not matter. Can you suggest me a way so that I can extend the gradle plugin for my usecase?
I am trying to get list of all the available recipes. Below is the code in which I am trying to get all the available recipes. ``` DefaultProjectParser defaultProjectParser =...
As of now we have rewrite discover to print list of all available recipes. But in my use case I need list of all available recipes among these in turn...
I am following the same steps as you mentioned but getting this error- ``` Caused by: java.lang.ClassCastException: class org.openrewrite.java.style.IntelliJ cannot be cast to class org.openrewrite.style.NamedStyles (org.openrewrite.java.style.IntelliJ is in unnamed module...
I am now able to find all the active recipes filtered by tag name by doing this- ``` import org.gradle.api.Project; import org.openrewrite.Recipe; import org.openrewrite.gradle.RewriteExtension; import org.openrewrite.gradle.isolated.DefaultProjectParser; import java.util.List; import java.util.stream.Collectors;...