java+SpringBootMaven(站点)-找不到父项目的url不会添加父菜单

ryevplcw  于 2021-06-26  发布在  Java
关注(0)|答案(0)|浏览(298)

关于springboot多模块项目的maven站点的小问题。
我目前正在构建一个maven多模块项目,但是,在一个基本的mvn站点上,我看到了以下内容:

Unable to find a URL to the parent project. The parent menu will NOT be added.

这个消息让我有点困惑,因为在我的根pom中:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.1</version>
    <relativePath/>
</parent>

<name>someName</name>
<description> some description</description>
<url>https://pages.github.[...]</url>
<organization>
    <name>myOrg</name>
</organization>
<scm>
    <url>https://github.[...]</url>
</scm>

 <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.9.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-project-info-reports-plugin</artifactId>
                <version>3.1.1</version>
            </plugin>

即使在spring根pom上,我也看到了“url”。另外,在我的每个子模块中,我都引用了父pom。
因此,我确实在使用一个url。我做错了什么在这里得到“找不到一个父项目的网址。不会添加父菜单。“?
那怎么解决呢?
谢谢您

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题