in maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java [550:557]
private boolean isPublicSetterMethod(JavaMethod method) {
return method.isPublic()
&& !method.isStatic()
&& method.getName().length() > 3
&& (method.getName().startsWith("add") || method.getName().startsWith("set"))
&& "void".equals(method.getReturnType().getValue())
&& method.getParameters().size() == 1;
}