You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
protoc supports Kotlin-specific code generation (https://protobuf.dev/reference/kotlin/kotlin-generated/) which helps a lot in the development experience: it generates a convenient DSL so the cumbersome builders are no longer needed. This Kotlin support is on top of the normal Java codegen output, and it would be great if this Kotlin-specific code can be generated in some way through Quarkus automatically.
Note that this is different from #24505, as this is only about the DSL (and related code) generated by protoc.
Implementation ideas
Some thoughts on what might work for this:
Automatically set this option based through the quarkus-kotlin library; for example by letting this library influence some configuration in the code generation.
Expose some option to toggle the creation of Kotlin sources
Expose a more generic interface to "add parameters" to the protoc call.
The text was updated successfully, but these errors were encountered:
Description
protoc
supports Kotlin-specific code generation (https://protobuf.dev/reference/kotlin/kotlin-generated/) which helps a lot in the development experience: it generates a convenient DSL so the cumbersome builders are no longer needed. This Kotlin support is on top of the normal Java codegen output, and it would be great if this Kotlin-specific code can be generated in some way through Quarkus automatically.Note that this is different from #24505, as this is only about the DSL (and related code) generated by
protoc
.Implementation ideas
Some thoughts on what might work for this:
quarkus-kotlin
library; for example by letting this library influence some configuration in the code generation.protoc
call.The text was updated successfully, but these errors were encountered: