-
|
I have implemented using below jars 1. wire-schema-jvm-5.4.0.jar command i used Classes get Generated Successfully. 2 am i missing something .? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
By default, built-in targets (Kotlin, Java, Swift) are exclusive. This means that they claim the services and types that they get to handle and don't let the other targets handle them. Give it a go |
Beta Was this translation helpful? Give feedback.
By default, built-in targets (Kotlin, Java, Swift) are exclusive. This means that they claim the services and types that they get to handle and don't let the other targets handle them.
We have those 3 flags to make them non exclusive so that services and types can be handled by multiple targets in the same execution:
--no_java_exclusive,--no_kotlin_exclusive, and--no_swift_exclusive.Give it a go