StefanBauerTT

Results 6 comments of StefanBauerTT

We're seeing the same issue using Spotbugs 4.4.2.2. In our case, we're using Lombok's `@Log4j2` annotation to get a logger. Each class that uses this annotation is affected by this...

Thank you for your swift response, @eirslett and @tkalmar. I missed a piece of the puzzle. The error occurred when running `npm install`. Our `package.json` contains a dependency with explicit...

I found the place where the proxy settings get passed from the frontend plugin to git via environment variables: https://github.com/eirslett/frontend-maven-plugin/blob/b7b060fa13ca47e69172ee6d06194ffd41c35084/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NpmRunner.java#L54 Surprisingly though, the no_proxy environment variable is not set here,...

Ok, sorry for the confustion. Adding `git.corp.network` to the `` in the maven settings.xml **acutally fixed nothing**. So the bottom line of this is that the frontend plugin sets the...

@royteeuwen work to fix this is currently happening in https://github.com/apache/maven-surefire/pull/828

Out of curiosity, I just checked how a unidirectional OneToOne relationship inside an embeddable behaves. ```java @Embeddable public class PageSet { @OneToOne(cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.EAGER)...