Maven:只生成报告

Maven:只生成报告,maven,cobertura,pmd,surefire,Maven,Cobertura,Pmd,Surefire,我有这个POM.xml <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.0.1</version> <reportSets&

我有这个POM.xml

<reporting>
<plugins>
   <plugin>  
    <groupId>org.apache.maven.plugins</groupId>  
    <artifactId>maven-pmd-plugin</artifactId>  
    <version>3.0.1</version>  
    <reportSets>
      <reportSet>
        <reports>
          <report>pmd</report>
          <report>cpd</report>
        </reports>
      </reportSet>
    </reportSets>
 </plugin>

 <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <version>2.5.2</version>
  </plugin>

   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-report-plugin</artifactId>
    <version>2.14</version>
  </plugin>

</plugins>

org.apache.maven.plugins
maven pmd插件
3.0.1  
偏振模色散
持续专业发展
org.codehaus.mojo
cobertura maven插件
2.5.2
org.apache.maven.plugins
maven surefire报告插件
2.14

当我使用
mvn站点
时,它会为我生成一个fuuly网站,但我只想生成报告


谁能提供执行此任务的命令来帮助我?

请提供更多详细信息