开发者

How do you include resources files in Maven site source cross reference?

开发者 https://www.devze.com 2023-02-04 23:01 出处:网络
开发者_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 Mave

开发者_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>
0

精彩评论

暂无评论...
验证码 换一张
取 消