-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update jsonscheme2dataclass plugin to 6.0.0 #305
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Appu Goundan <[email protected]>
For reference, the failure is caused by empty /**
*
* @param data
* @param signature
*/
public HashedRekord(Signature signature, Data data) {
super();
this.signature = signature;
this.data = data;
} |
I think I'm going to ignore the javadoc generation on this subpath for now. |
javadoc is really annoying to configure. Might sit on this for a while. Another option is change the package of the generated model from dev.sigstore.rekor -> dev.sigstore.rekor.model and exclude just that package path (easy) |
@loosebazooka , another idea: add regexp-based processing to kill ill javadocs or replace them with WDYT? |
Using a separate package for generated code looks good to me. |
Hah, I think I would rather not do this 😅 |
Signed-off-by: Appu Goundan [email protected]