gpt4 book ai didi

java - IntelliJ 的 Maven 模块 View 中的第二个根模块

转载 作者:行者123 更新时间:2023-12-02 05:10:27 24 4
gpt4 key购买 nike

我有一个多模块 Maven 应用程序,其父 pom 如下:

<groupId>com.test</groupId>
<artifactId>uke-management</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>uke-management</name>
<packaging>pom</packaging>

<modules>
<module>application</module>
<module>user-management</module>
<module>security</module>
<module>workflow</module>
<module>commons</module>
<module>database</module>
<module>contract-management</module>
<module>file-management</module>
<module>communication-management</module>
</modules>

现在在intelliJ的maven模块 View 中我可以看到所有模块,但是communication-management显示了两次,我不知道为什么。从我的应用程序的结构来看,它似乎不应该作为根可见,但不知何故是可见的。这是通信管理的pom:

<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>uke-management</artifactId>
<groupId>com.test</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>communication-management</artifactId>

<properties>
<spring-boot-starter-mail>2.1.5.RELEASE</spring-boot-starter-mail>
</properties>

<build>
// some build plugins
</build>

<dependencies>
<!-- project dependencies -->
<dependency>
<groupId>com.test</groupId>
<artifactId>user-managment</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.2.0.Final</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
<version>${spring-boot-starter-mail}</version>
</dependency>
</dependencies>

这就是我在 IntelliJ 中看到它的方式:

enter image description here

为什么communication-management显示两次并且为什么显示为root?

我已经尝试过重新导入、清理等。

最佳答案

事实证明这是一些 IntelliJ 问题,重新启动电脑解决了它。我不认为它是可重现的。我尝试创建一些示例项目,但没有出现问题。

旧的“你是否尝试过将其关闭然后再次打开”对我有用。

关于java - IntelliJ 的 Maven 模块 View 中的第二个根模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56329330/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com