Unable to locate Source XRef to link to

前端 未结 4 922
既然无缘
既然无缘 2020-12-24 04:24

I have a big maven project that uses the pmd plugin for code quality checks.

since I started using the pmd plugin i get the following warning message:



        
4条回答
  •  一生所求
    2020-12-24 05:05

    You should add the maven-jxr-plugin and run the jxr:jxr goal before the site lifecycle if the maven-jxr-plugin is added as a plugin like in your case:
    clean jxr:jxr site

    Otherwise you should add it as a report if you want it to work with mvn site. Take a look at the JXR Usage Documentation : JXR Usage

提交回复
热议问题