Benoit Chatain Lacelle

Results 131 comments of Benoit Chatain Lacelle

Regarding proxy configuration in `mvn` plugins: - https://maven.apache.org/guides/mini/guide-proxies.html - Some proxy issue fixing PR in another maven-plugin: [1.13.0](https://github.com/microsoft/azure-maven-plugins/commit/584addb0298eaf4e06fbcd732caeebf6ec2bc37b) -> [ProxyUtils.java ](https://github.com/microsoft/azure-maven-plugins/blob/584addb0298eaf4e06fbcd732caeebf6ec2bc37b/azure-maven-plugin-lib/src/main/java/com/microsoft/azure/maven/utils/ProxyUtils.java) It demonstrates the use of MavenExecutionRequest.getProxies, and its forward...

#1653 demonstrate another unexpected behavior with such faulty configuration: both `spotless:apply` and `spotless:check` telling `SUCCESS` but not modifying files requiring formatting.

@nedtwigg This has been resynced with main. Ready-for-merging

Hello. I would also take benefit from Kanzi being deployed on Maven Central. Until then, I considered addin Kamzi as a submodule of my git repository but I then encounter...

Where can I add `@SuppressWarnings("PMD.UnnecessaryImport")` to workaround this?

In the same project, I have another case of [UnnecessaryImport](https://docs.pmd-code.org/latest/pmd_rules_java_codestyle.html#unnecessaryimport) false-positive. However, it is problematic to report as it triggers only in our CI, and not locally. The code looks...

I'm sorry for the confusion @jsotuyod , this second issue happening in CI but not in local is not for ~IntStream~ but `Stream`. ``` 14:24:50,665 [INFO] PMD Failure: io.xxx.address.AAA:11 Rule:UnnecessaryImport...

I have another CI-only false-positive: ``` 07:35:29,650 [INFO] PMD Failure: io.xxx.openid.profiles.filter.XXX:8 Rule:UnnecessaryImport Priority:4 Unused import 'java.util.Optional'. 07:35:29,650 [INFO] PMD Failure: io.xxx.openid.profiles.match.YYY:8 Rule:UnnecessaryImport Priority:4 Unused import 'java.util.Optional'. ``` while previous case...

FYI I'll stop the migration of given (closed-source project from PMD `6.55.0` to `7.0.0-rc4`. I opened multiple false-positive issues, but the leftovers suggests something more tricky is going on (CI-only,...

Any idea why it was happening only in CI ? It may help with the various CI only issues. On Thu, Feb 29, 2024, 5:44 PM Juan Martín Sotuyo Dodero...