我一直在使用IntelliJ IDEA
一段时间,但我总是为我正在处理的每个模块打开一个实例,例如:
我有一个data-access
模块和一个service
模块
data-access
是service
模块的依赖项。
当我处理那些时,每个人都有一个IntelliJ IDEA
个实例。
所以我希望将它们全部作为2个模块放在一个实例上,所以这就是我所做的:
我使用以下内容创建了一个父pom.xml
文件:
<?xml version="1.0" encoding="UTF-8"?>
<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.rodrigosasaki</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>data-access</module>
<module>service</module>
</modules>
</project>
之后我根据这个pom创建了一个新的IDEA project
,它正确打开了2个模块。
但我无法建造它们。如果我查看Project Settings > Libraries
,我就不会看到maven依赖。
有谁知道我错过了什么?
答案 0 :(得分:0)
您收到的确切错误消息是什么? 您是否尝试使用maven在IDE外部构建它们?只需尝试从命令行导航到父pom,尝试:mvn clean compile