Maven无法解析同一多模块项目中模块的依赖关系

时间:2015-04-18 04:26:16

标签: java maven jar classpath pom.xml

运行

等命令时
mvn dependency:build-classpath

mvn exec:java

Maven无法解析其中一个模块对另一个模块的依赖关系。

  

[错误]无法在项目解析器-app上执行目标:无法解析项目project_group的依赖项:A:jar:0.1-SNAPSHOT:找不到工件project_group:B:jar:0.1-SNAPSHOT

项目结构如下:

/pom.xml
/A/pom.xml
/B/pom.xml

父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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>project_group</groupId>
  <artifactId>parent</artifactId>
  <packaging>pom</packaging>
  <version>0.1-SNAPSHOT</version>
  <name>parent</name>

  <modules>
    <module>A</module>
    <module>B</module>
  </modules>

第一个子模块(未能解决依赖关系的模块):

    <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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>parent_group</groupId>
    <artifactId>parent</artifactId>
    <version>0.1-SNAPSHOT</version>
  </parent>
  <artifactId>A</artifactId>
  <packaging>jar</packaging>
  <name>A</name>

  <dependencies>
    <dependency>
      <groupId>parent_group</groupId>
      <artifactId>B</artifactId>
      <version>0.1-SNAPSHOT</version>
    </dependency>

第二个子模块(依赖项):

  <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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>parent_group</groupId>
    <artifactId>parent</artifactId>
    <version>0.1-SNAPSHOT</version>
  </parent>
  <artifactId>B</artifactId>
  <packaging>jar</packaging>
  <name>B</name>

4 个答案:

答案 0 :(得分:44)

您是否至少在项目上运行mvn clean install一次以在本地存储库中安装依赖项?

答案 1 :(得分:15)

Maven反应堆很奇怪,它只为某些任务保留模块。当运行只为一个子项目执行某些操作的构建目标时,即使Maven首先构建依赖项,它也不会将它们保留在反应堆中(有时)。

安装到本地存储库是一种解决方法,但它很糟糕,应该尽可能避免,因为您很容易就会得到过时的构建结果。

稍微不那么丑陋的解决方法是组合两个构建目标,其中第二个构建目标执行无害的操作,但在所有子项目中触发对reactor的添加。

作为一个例子,您可以将所需的任务与“编译”相结合。或者&#39;包装&#39;任务。

另见最高投票回答 Maven doesn't recognize sibling modules when running mvn dependency:tree

答案 2 :(得分:0)

此错误也可能是由于Maven处于离线模式引起的。

有时候,我似乎不小心在IntelliJ IDEA中启用了脱机模式。要禁用它,请在Maven工具栏中切换Toggle Offline Mode切换

enter image description here

或取消选中Build, Execution, Deployment > Build Tools > Maven下设置中的脱机工作复选框。

enter image description here

答案 3 :(得分:0)

test-jar中配置jar plugin为我解决了这个问题:

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.2.0</version>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

然后,运行mvn clean install即可。