Björn Kautler

Results 938 comments of Björn Kautler

That you have to wait for a minute is maybe because you are using Eclipse. Most time I helped colleagues that were using Eclipse with something was spent in actually...

You are doing multiple errors. The most prominent is, you are **not** starting the tests with JUnit 4 as required, but with JUnit 5. This way the `@RunWith` annotation is...

Just to mention, I tried with the latest `master` and I still get the same AIOOBE shown in #637

Well, you could rename the task to `spotbugs`, then add a simple no-op task called `spotbugsMain` that depends on `spotbugs` and emits a deprecation warning, then at some point remove...

Hm, actually I'm unsure now. The standard code quality plugins shipped with Gradle like codenarc, pmd, findbugs or jdepend all follow the ´blaMain` convention. :-/ I'll open a ticket to...

https://github.com/gradle/gradle/issues/8542

Well, it is kind of anti-fixed. The possibility to exclude was completely removed. :-(

The old plugin (2.0.0 for example) was `PatternFilterable`, so it should have worked to use the standard `exclude` and `include` to exclude and include files to be analyzed, but they...

Actually with `IsolationMode.CLASSLOADER`, it works fine, as then the classes are in a separate class loader and so the static fields don't influence each other. I tried this with some...

Ah, yes, I see you switch to have one worker process per run, that should fix it, yes. Sad that it only supports 5.0 though, I'm still on 4.10.2 on...