I have updated my protos files as:
message XYZ {
string a = 1;
repeated=Detail b = 2;
// New field added
CustomType c = 3;
}
This is maintained in a repo which when successfully run in spinnaker uploads to artifactory. The jar file uploaded there has the correct fields etc. However when I try to access this same version of protos which is uploaded in artifactory in a separate repo, I am unable to access the field c in message XYZ. I am using intelliJ and kotlin, and have tried refreshing maven as well as deleting cache. Can anyone please help here?