Björn Kautler
Björn Kautler
If you specified `-b` or `--build-file` already on the commandline, the completion should work with taking that into account. Actually the code comment in `__gradle-set-build-file` already says that it does:...
If you specified `-c` or `--settings-file` already on the commandline, the completion should work with taking that into account. Actually the code comment in `__gradle-set-settings-file` already says that it does:...
I use this lib from Groovy and used 0.1.8 before which worked fine. Now I updated to 0.8.2 and it is not working anymore due to https://issues.apache.org/jira/browse/GROOVY-11116. Summarized, having an...
Currently if you for example request Windows/x86, as no variant is configured for it, you get the default variants with the empty jars. With this additional attribute change, you instead...
Now that the modularity plugin is no longer auto-applied, there is not really a reason to not support Java 8 which still is the minimum version all supported Gradle versions...
This gives warnings when the `STABLE_CONFIGURATION_CACHE` feature is enabled and will be an error with Gradle 9. For tasks like the maven publish tasks you enrich with it, you can...
```md This function can be used on a `Configuration` or `Provider` thereof to get a `Provider` with the platform-dependent artifacts for the operating system given as argument. ``` is translated...
If you convert foo ```kotlin println("bar") ``` baz ```kotlin println("bam") ``` the expected result is ```adoc foo [source,kotlin] ---- println("bar") ---- baz [source,kotlin] ---- println("bam") ---- ``` but what you...
If you transform this: ```md - foo - bar - baz bam boo - bae ``` you end up with ```adoc * foo ** bar *** baz bam boo -...
If you transform ```md - foo - bar baz ``` this currently ends up as ```adoc * foo ** bar baz ``` which feels a bit unnice. Imho it should...