Bartosz Bednarek
Bartosz Bednarek
After adding `com.jaredsburrows.license` plugin to my Kotlin project ``` plugins { id("org.jlleitschuh.gradle.ktlint") version "11.3.1" id("com.jaredsburrows.license") version "0.9.3" apply false kotlin("jvm") version "1.7.0" kotlin("kapt") version "1.7.0" } ``` my project stopped...
Fixes https://github.com/mock-server/mockserver/issues/1568 We do have exactly the same docker based image in our private ECR. The image is multi-arch and supports `X64` and `ARM64` architectures. We are using ARM based...
# Description It would be very helpful to add `--auto-merge` flag to `turbolift create-prs` command. # Motivation In case of huge amount of repos it would be very convenient to...
Mapping of the `Map` where `K` is enum doesn't work. Example entity: ``` @DynamoDbBean @Data public class TestClass { @DynamoDbPartitionKey private String id; private Map map; public enum Status {...