sergeykad

Results 63 comments of sergeykad

@robbbaxley Since the CLI version was returning unreliable results and is a legacy implementation I never bothered trying to fix it.

`--cache-artifacts=false` helps, but it forces a full rebuild of the artifacts regardless if they were changed and significantly increases Skaffold execution time. Not adding `--cache-artifacts=false` while running `skaffold dev` on...

I added the `-Djava.util.logging.config.file=path/to/logging.properties -Djib.serialize=true` but I am not sure if I see any change at all. There is no additional logging, but it is possible that it solved the...

I double-checked my configuration and even enabled Gradle debug log, but I still do not see these HTTP log messages. Where should they be printed to?

With the Jib logging enabled it seems that the issues I am experiencing correlate with timeout errors. I did not find the root cause yet, since everything else seems normal....

Are there plans to create an official Docker image based on Java 17?

Works for me with these: ``` --add-opens=java.base/jdk.internal.misc=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED --add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED --add-opens=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED ```

I am trying to use the new option, but it does not work. https://github.com/spotbugs/spotbugs/blob/4.8.0/CHANGELOG.md#added ```xml ```

@Vampire You are correct, but this is the most useful use case for filtering by annotation. Our project for example has multiple locations with generated code. Without the option to...

@Vampire What annotation would you recommend for the generated code?