Alexey Shirmanov
Alexey Shirmanov
ok, for these who are having the same issue the workaround is the following ``` - name: Setup Gradle uses: gradle/[email protected] with: gradle-version: 7.5 gradle-home-cache-cleanup: true cache-read-only: false ``` so...
ok, for these who are having the same issue the workaround is the following ``` - name: Setup Gradle uses: gradle/[email protected] with: gradle-version: 7.5 gradle-home-cache-cleanup: true cache-read-only: false ``` so...
here is a small project that demonstrates what's going on https://github.com/ashirman/flyway_issue_demo if [Configuration cache](https://docs.gradle.org/current/userguide/configuration_cache.html) is used then it applied `java` plugin seems like ignored so as result Flyway plugin can...
if I explicitly define configurations I want to use such as ``` flyway { url = "jdbc:postgresql://localhost:5432/foo" user = "foo" password = "foo" table = "schema_version" configurations = arrayOf("compileClasspath", "runtimeClasspath",...