Delany

Results 107 issues of Delany

The plugin is not resolving version tags of the form `${revision}${changelist}` correctly and Im unable to run `./mvnw org.openrewrite.maven:rewrite-maven-plugin:4.43.0:cyclonedx` https://maven.apache.org/maven-ci-friendly.html The values are set in the `.mvn/maven.config` ``` -Drevision=${git.branch} -Dchangelist=-SNAPSHOT...

bug

With this configuration ``` com.github.spotbugs spotbugs-maven-plugin 4.8.3.0 check verify check com.h3xstream.findsecbugs findsecbugs-plugin ${dep.findsecbugs-plugin} com.mebigfatguy.sb-contrib sb-contrib ${dep.sb-contrib} less high false true false ${build.root}/spotbugs-exclusions.xml com.github.spotbugs spotbugs-maven-plugin 4.8.3.0 com.h3xstream.findsecbugs findsecbugs-plugin ${dep.findsecbugs-plugin} com.mebigfatguy.sb-contrib sb-contrib...

The usual way to extend plugin functionality is to add a dependency https://maven.apache.org/guides/mini/guide-configuring-plugins.html#Using_the_.3Cdependencies.3E_Tag Is it too late for that?

How can I achieve? git log -n20 Also, I have many projects in a single repo so I want to filter by directory git log -n20 -- .

Essentially the implementation of the `MethodNameCasing` recipe is inadequate. All the documentation https://docs.openrewrite.org/recipes/staticanalysis/methodnamecasing can tell me is `Method names should comply with a naming convention.` Well what is that convention...

bug
documentation

Given the code ```java if (object instanceof JarArtifact) { try (JarArtifact a = (JarArtifact) object) { ``` a rewrite using `InstanceOfPatternMatch` results in ```java if (object instanceof JarArtifact a) {...

bug

This configuration will fail the build if a relocation is found: ```xml biz.lermitage.oga oga-maven-plugin 1.8.0 default-cli check validate false false ```

enhancement

Complete the installation page to describe installing locally

To avoid a lot of repetition in my pom files, and as a means to configure globally, I often pre-configure a plugin like with the logLevel here ``` com.soebes.maven.plugins echo-maven-plugin...

If default comes before a case and simply continues into that case ```java default: case DERIVATION_MODE: System.out.println("default"); break; ``` refactoring with `org.openrewrite.staticanalysis.DefaultComesLast` from `org.openrewrite.recipe:rewrite-static-analysis:1.6.0` results in a duplicate case and...

bug