在没有父pom的情况下为多模块项目创建站点

时间:2019-02-18 14:49:04

标签: maven

我在aggregator pom中添加了多个模块。

MAIN
|_ module1
   |_ pom.xml
|_ module2
   |_ pom.xml
|_ pom.xml

我不想介绍父母/子女关系。 我只想要可以按特定顺序运行模块的聚合器pom。

我也想在我的机器上运行site。但是,我无法使链接正常工作。 我尝试了一切。 这是我到目前为止的内容:

<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>com.test</groupId>
   <artifactId>MAIN</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Project Aggregator</name>

   <properties>     
        <project.baseUri>file://C:/eclipse-workspace/Development/MAIN/target/staging/</project.baseUri>
   </properties>

   <modules>
        <module>module1</module>
        <module>module2</module>
   </modules>

   <distributionManagement>
      <site>
        <id>${project.artifactId}-site</id>
        <url>${project.baseUri}</url>
      </site>
    </distributionManagement>

    <build>
        <plugins>
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-site-plugin</artifactId>
              <version>3.7.1</version>
          </plugin>
        </plugins>
    </build>
</project>

module1 pom:

<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>com.test</groupId>
    <artifactId>module1</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <name>module1</name>
    <url>http://maven.apache.org</url>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.2.RELEASE</version>
    </parent>

    <properties>
        <project.baseUri>file://C:/eclipse-workspace/Development/MAIN/module1/target/site/</project.baseUri>            
    </properties>

       <distributionManagement>
          <site>
            <id>${project.artifactId}-site</id>
            <url>${project.baseUri}</url>
          </site>
       </distributionManagement>
    </build>
</project>

我运行mvn clean site site:stage到模块的链接:module1,module2断开。

我尝试了在互联网上可以找到的所有组合,但是没有任何效果。

这实际上可行吗?

0 个答案:

没有答案