如何跳过报告和项目信息,而不是上传默认皮肤的CSS&图片?

时间:2016-09-18 21:16:04

标签: maven pom.xml maven-site-plugin

我想使用Maven在Sourceforge上传我的网站内容,我不想生成和上传报告,项目信息,CSS和皮肤图像。我已成功生成没有报告,但仍有两个不需要的目录包含CSS和皮肤图像:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>mygroupid</groupId>
  <artifactId>myartifactid</artifactId>
  <version>0.0.1-SNAPSHOT</version>

  <name>myname</name>
  <description>mydescription</description>
  <url>http://www.somewhere.fr</url>
  <inceptionYear>2016</inceptionYear>

  <distributionManagement>
    <site>
      <id>myproject.sf.net</id>
      <url>scp://shell.sourceforge.net/home/project-web/myproject/htdocs/tmp/www_somewhere_fr</url>
    </site>
  </distributionManagement>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.9</version>
        <reportSets>
          <reportSet>
            <reports></reports>
          </reportSet>
        </reportSets>
      </plugin>
    </plugins>
  </reporting>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-site-plugin</artifactId>
        <version>3.5.1</version>
        <dependencies>
          <dependency>
            <groupId>org.apache.maven.wagon</groupId>
            <artifactId>wagon-ssh</artifactId>
            <version>1.0</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>
</project>

问题:如何摆脱这些目录?

我在this tutorial中尝试了最后一个建议,但在我的情况下它不起作用。将generateReportsgenerateProjectInfo设置为false无济于事。如果maven-site-plugin不是正确的,请随意建议一个更合适的插件来执行此任务。

1 个答案:

答案 0 :(得分:0)

  

如何摆脱这些目录?

在使用网站生命周期的maven phases部署网站之前,您实际上可以添加一些后期处理:

  
      
  • pre-site执行实际项目网站生成之前所需的流程
  •   
  • site生成项目的站点文档
  •   
  • post-site执行完成网站生成所需的流程,并准备网站部署
  •   
  • site-deploy将生成的站点文档部署到指定的Web服务器
  •   

在这种情况下,post-site阶段听起来适合您的要求。因此,您可以将插件执行绑定到post-site阶段以进行后期处理deleting folders,类似于下面的代码段

<plugin>
    <artifactId>maven-clean-plugin</artifactId>
    <version>3.0.0</version>
    <executions>
      <execution>
        <id>auto-clean</id>
        <phase>post-site</phase>
        <goals>
          <goal>clean</goal>
        </goals>
        <configuration>
         <filesets>
            <fileset>
              <directory>${project.reporting.outputDirectory}/folderToDelete</directory>
            </fileset>
          </filesets>
        </configuration>
      </execution>
    </executions>
</plugin>