开发者_JAVA技巧Especially of interest are the configuration xml files that are so common.
I'd hope there was a configuration to the JXR plugin. I tried */.xml but that didn't work.
It looks like Maven JXR plugin does provide a way to include/exclude files though not sure if it is just .java files.
You should try **/*.xml
rather than */*.xml
<includes>
<include>**/*.xml</include>
</includes>
精彩评论