Björn Kautler

Results 489 issues of Björn Kautler

If you do as the subject says and then try to build the image, then the `jre` task complains that `/jmods` is not found. Of course the error is correct,...

The completion cache is hard-coded created in `$HOME/.gradle/completion`. But if `GRADLE_USER_HOME` is set it would be appropriate to also create the completion cache in there.

The completion works fine if your root build script is either named `build.gradle` or its name is set via `rootProject.buildFileName = '...'` or `rootProject.buildFileName = "..."` (actually also `rootProject.buildFileName =...

a:feature
from:contributor

I spent the day to find out that my problem actually is the following JMockit bug: If I have a method signature like the following ``` FacesMessage getMessage(Severity severity, String...

enhancement

```shell #!/usr/bin/env bash set -u declare -A imageformats imageformats[a]=b imageformats[c]=d declare -p imageformats ``` outputs ```shell declare -A imageformats=([a]="b" [c]="d" ) ``` but BashSupport flags `a` and `c` as `Unresolved...

I know this is **Kotlin** playground. But I thought I'd ask for this anyway as almost everything is in place already anyway, so integrating this should not be a big...

If you for example want to write a copy constructor, it would be nice if you can use the plugin. Currently you would have to do `MyClass instance = this;`...

SpotBugs uses static stuff which influences multiple runs and even builds for different projects and thus makes things different depending on situation and actually unpredictable. Where I observed it is...

bug
need info

As far as I could determine, using the `PatternFilterable` methods like `exclude` and `include` has no effect at all. I also see nowhere documented how to include or exclude files...

For most standard Gradle plugins, the `Main` is left out for the `main` source set in task names, like `compileJava` vs. `compileTestJava` or `compileOtherSourceSetJava` and so on. Maybe it would...