Open
Description
Recently we have upgraded our build tool chain to Java 24.
Even if we still target for Java 17, we need the latest Java for a proper nullability support.
As a side effect we got a lot of JavaDoc warnings.
For example:
/home/runner/work/spring-integration/spring-integration/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/support/MappingUtils.java:98: warning: @param argument "replyMessage" is not a parameter name.
* @param replyMessage the reply message.
^
There is TODO until all fixed
in the build.gradle
for the Werror
JavaDoc option.
Just uncomment that and project build is going to fail.
Use ./gradlew clean check -x test
to see those warnings in logs or check the fix.