我已經配置我的pom
文件用於生成pmd
報告使用在我的POM文件中的插件。爲什麼maven pmd插件生成pmd.html
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>pmd</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<format>xml</format>
</configuration>
</execution>
</executions>
</plugin>
在這裏,我能夠在我的項目的目標文件夾中創建報告pmd.xml
使用:
mvn clean compile" command
但其打造「網站」文件夾,也根據該目標文件夾和pmd.html
文件還對網站內部創建夾。
why.How to configue so that site folder does not get create。
我不想生成站點文件夾。我只需要pmd xml文件。 –
查看我的編輯修改你的POM,以避免在網站文件夾中有HTML報告 – Adonis
感謝您的回覆,我使用了您的插件配置但仍然在myHtmlPmdDirectory和pmd.xml文件的myHtmlPmdDirectory和pmd.xml下創建pmd.html文件。所以我編輯了這樣的 $ {project.build.directory}/ outputDirectory> xml configuration>現在pmd.html和pmd.xml都被創建爲更加新的項目目標文件夾。實際上我只想要pmd.xml而不是pmd.html。 –