Update jsonscheme2dataclass plugin to 6.0.0#305
Conversation
Signed-off-by: Appu Goundan <appu@google.com>
|
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 appu@google.com