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
Hi,
probably I have misconfigured something but cannot figure out what for getting this: No implementation was created for QcMapper due to having a problem in the erroneous element com.google.type.Date. Hint: this often means that some other annotation processor was supposed to process the erroneous element. You can also enable MapStruct verbose mode by setting -Amapstruct.verbose=true as a compilation argument.
I don't know where is the com.google.type.Date type comming from, in proto file definitions I'm using only Timestamp
I just stumbled upon this same issue. Mapstruct is complaining about com.google.type.Data not being present. This type comes from com.google.api.grpc:proto-google-common-protos, which entur's libraries are including as compileOnly but they seem to be required by the annotation processor if you use it in your project.
Include the mentioned library: com.google.api.grpc:proto-google-common-protos in your project and the error should be gone.
Hi,
probably I have misconfigured something but cannot figure out what for getting this:
No implementation was created for QcMapper due to having a problem in the erroneous element com.google.type.Date. Hint: this often means that some other annotation processor was supposed to process the erroneous element. You can also enable MapStruct verbose mode by setting -Amapstruct.verbose=true as a compilation argument.
I don't know where is the
com.google.type.Date
type comming from, in proto file definitions I'm using onlyTimestamp
this is my
maven-compiler-plugin
config:with versions:
example of a mapper that outputs that error:
I have tried to re-shuffle order of path in annotation processing config, but with no luck.
what can be wrong here?
thank you!
The text was updated successfully, but these errors were encountered: