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
Started seeing some new javadoc warnings when upgrading from 5.0 -> 6.0
for data like:
...
"hash": {
"description": "Specifies the hash algorithm and value for the content",
"type": "object",
"properties": {
"algorithm": {
"description": "The hashing function used to compute the hash value",
"type": "string",
"enum": [ "sha256" ]
},
"value": {
"description": "The hash value for the content",
"type": "string"
}
},
"required": [ "algorithm", "value" ]
}
...
Would it make sense to inject the description into the generated javadoc here so we don't get javadoc generation warnings (happens with Temurin Java11) like:
/home/.../Hash.java:44: warning: no description for @param
* @param value
^
The text was updated successfully, but these errors were encountered:
@eirnym jsonscheme2pojo has released 1.2.x with this update. I don't see a way to update my reference to it in the plugin. Do this project need to push an update?
While I'm working on a new version, you can use a trick to define dependency explicitly as shown in a classpath demo projects. I hope new version will be released soon
Started seeing some new javadoc warnings when upgrading from 5.0 -> 6.0
for data like:
a constructor is created like:
Would it make sense to inject the description into the generated javadoc here so we don't get javadoc generation warnings (happens with Temurin Java11) like:
The text was updated successfully, but these errors were encountered: