Alina Dolgikh [JB]
dawidhyzy
03/21/2025, 9:32 AMmarcin.kozinski
03/21/2025, 12:12 PMFrank Bouwens
03/21/2025, 12:36 PMErik Dreyer
03/25/2025, 2:54 PM-Xcontext-parameters
compiler arg to work. It works from the command line mvn compile
, but not when building in IntelliJ. The error I get is that I must have context params enabled. Anyone else encounter and solve this?Dumitru Preguza
03/31/2025, 10:43 AMtapchicoma
04/02/2025, 7:55 AMColton Idle
04/02/2025, 5:33 PMtapchicoma
04/02/2025, 6:31 PMapplication
plugin which will not work with KMP in projects using Gradle 8.7+Dumitru Preguza
04/03/2025, 2:07 PM[ERROR] 'build.plugins.plugin[org.jetbrains.kotlin:kotlin-maven-plugin].dependencies.dependency.scope' for org.projectlombok:lombok:jar must be one of [compile, runtime, system] but is 'provided'
I'm checking what I have done wrongDumitru Preguza
04/03/2025, 2:25 PMDumitru Preguza
04/03/2025, 3:14 PMlombok.fieldDefaults.defaultPrivate = false
then I get in kotlin this error when trying to get/set a field from a Java Dto annotated with @Getter and @Setter at class level:
Exception in thread "main" java.lang.IllegalAccessError: class MainKt tried to access private field MyDto.myField (MainKt and DnsMessage are in unnamed module of loader 'app')
I think it has something to do with the compiler, lombok will put private instead of default modifiertapchicoma
04/03/2025, 3:15 PM