Gopal S Akshintala
Gopal S Akshintala
This is an awesome library and I use it for both Java and Kotlin. Currently this only works with `kapt` annotation processor for Kotlin on Gradle. However, `kapt` is getting...
I have a code-base that heavily uses Lombok, but I wish to incrementally migrate some of it using Immutables (Mostly for Staged Builder and Precheck). I use Gradle and I...
Hi, I am trying to load n NPM module on a Stock JDK (openjdk_17.0.1_17.30.16_x64) with graal dependencies, following [this documentation](https://docs.oracle.com/en/graalvm/enterprise/21/docs/reference-manual/js/Modules/) ```kts val graalVersion = "22.0.0.2" implementation("org.graalvm.sdk:graal-sdk:$graalVersion") implementation("org.graalvm.js:js:$graalVersion") ``` ```kotlin fun...
A [Test](https://github.com/overfullstack/my-lab/blob/a38446857083b67f4bcf59fea4e54be330fa8402/moshi/src/test/kotlin/ga/overfullstack/adapter/MessageTest.kt#L44) to replicate this I am not able to run this test as I get this error. ``` e: file:///Users/gopala.akshintala/code-clones/my-github/my-lab/moshi/src/test/kotlin/ga/overfullstack/adapter/MessageTest.kt:32:3 Fallback adapter type's primary constructor can only have a...
Here is my Style: ```kotlin @Target(AnnotationTarget.CLASS) @Retention(AnnotationRetention.SOURCE) @Value.Style( typeImmutable = "*", typeAbstract = ["*Def"], builder = "configure", build = "off", put = "*", add = "*", depluralize = true, depluralizeDictionary...
I wish to suppress the auto-generated `foo(Iterable
Hi! I imported this project into intellij as sbt project and ran `sbt compile`. I get a lot of compiler errors across the project. Please help me with the steps...