sergeykad
sergeykad
Hi @eirnym, sorry for nagging, but when do you think you will be able to release version 7? The last release was over a year ago.
Hi @eirnym , any news regarding when you will release a new version? This is the only issue that keeps us from using the configuration cache.
The workaround does not work for me. `build\unpuzzle_temp\maven-ant-tasks-2.1.4-SNAPSHOT.jar` is created as part of the `clean` execution, so removing it manually does not help. The error is `Unable to delete file:...
I am getting similar errors randomly for the `RUN --mount=type=cache,target=/var/cache/apk apk add rsync openssh` line. The returned error codes are 7 or 3. It started happening after we switched to...
Parallel execution supported since [Gradle 1.2](https://docs.gradle.org/1.2/release-notes.html) (2012), so even if you want to support very old Gradle versions it should not be a problem.
Gradle 5.4 was [released](https://gradle.org/releases/) almost 5 years ago. Most Gradle plugins I am familiar with tend to focus on supporting the latest two major versions or even only the latest....
@vlsi Gradle Java plugin supports [incremental compilation](https://blog.gradle.org/incremental-compiler-avoidance), so I assume it should be doable here as well.
This error still occurs with Gradle 7.4.2 ``` Unknown event 0x800 for /home/ubuntu/workspace/ Received unknown event for /home/ubuntu/workspace/ Stopping file watching and invalidating VFS after an error happened Daemon will...
I am unable to reproduce the issue now. I worked around it by adding the following Gradle configuration: ```gradle modules { module('org.codehaus.groovy:groovy') { replacedBy('org.apache.groovy:groovy', 'conflicts with the current liquibase-groovy-dsl version')...
BodyHandler that can convert raw InputStream with JSON into a POJO. BodyPublisher that takes a POJO and converts it into a byte array with JSON. In other words [Java 11...