Janning Vygen

Results 18 comments of Janning Vygen

Same here. with spring-boot 3.0.4 and spring-framework 6.0.6 Running a few integration test with @DirtiesContext and then I get an OOM after a few tests. In my case it seems...

Man sollte das in einer neuen Major Version starten, denn mehr und mehr wird das gebraucht. Bei 3.x dann irgendwann nur noch bugs beheben. 4.x als neue major version mit...

Ich fände es wie folgt am besten: - Neue Version 4.x - Keine Änderung der artifactId - Umstellung auf jakarta und JDK17 So macht das im Moment zb auch Spring...

Wow! Ich hatte gerade alles andere bei uns auf jakarta umgestellt und wollte mich jetzt hier nützlich machen. Danke, Olaf!

I have the same problem. Formatting of Graphql files or rragments does not work with Code > Reformat Code (Ctrl-Alt -L) The only thing happening is fixing indentation. But no...

Using environment.put does not help as "'environment' is final and cannot be changed any further." I will try the provider option.

I implemented the provider option for me. It works fine. But the build service looks promising too. Thank you so much.

I used a provider like this: ``` task verify(type: NpxTask) { inputs.files(fileTree('tests/e2e')) command = 'cypress' args = ['run', '--browser', 'chrome'] environment = ['CYPRESS_BASE_URL' : project(':backend').backendServer.baseUrl.get()] } ``` and in my...