找不到Maven依赖模块

时间:2018-05-21 14:40:39

标签: java maven dependency-management java-9 vert.x

我在Maven中有一个相当简单的项目结构,包含子模块:

/
-pom.xml
-Utils/
  -pom.xml

/pom.xml中,我定义了所有子模块的属性,如库版本或插件配置:

<project>
    <modelVersion>4.0.0</modelVersion>

    <groupId>project</groupId>
    <artifactId>main</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>Utils</module>
    </modules>

    <properties>
        <java.version>10</java.version>
        <vertx.version>3.5.0</vertx.version>
    </properties>
</project>

/Utils/pom.xml中,我声明了子模块及其依赖项:

<project>
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>project</groupId>
        <artifactId>main</artifactId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>

    <artifactId>Utils</artifactId>
    <version>1.0.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>io.vertx</groupId>
            <artifactId>vertx-core</artifactId>
            <version>${vertx.version}</version>
        </dependency>
        <dependency>
            <groupId>io.vertx</groupId>
            <artifactId>vertx-unit</artifactId>
            <version>${vertx.version}</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

我声明了一个module-info.java文件:

module util {
    requires vertx.core;
}

当我在IDE中打开项目时,它按预期工作,我可以从vertx.core模块中的Utils包访问类,并在那里列出所有依赖项。 但是,当我尝试通过调用mvn clean compile来编译maven时,似乎依赖关系不在类路径中:

[INFO] Compiling 11 source files to /home/manulaiko/Programming/Java/Kalaazu/Utils/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /home/manulaiko/Programming/Java/Kalaazu/Utils/src/main/java/module-info.java:[5,19] module not found: vertx.core

我尝试过(没有成功):

  • 直接在dependency节点中设置库版本。
  • properties
  • 中设置/Utils/pom.xml节点
  • 尝试使用其他库版本。
  • 使用mvn dependency:build-classpath -Dmdep.outputFile=cp.txt检查类路径是否正确,并且库在那里。
  • mvn clean compile中运行/
  • mvn clean compile中运行/Utils
  • mvn -pl Utils clean compile
  • 中运行/
  • mvn clean install -U中运行/
  • mvn clean install -U中运行/Utils

2 个答案:

答案 0 :(得分:5)

至少需要3.7.0版的Maven编译器插件来正确处理模块。

答案 1 :(得分:0)

看起来像一个罐子地狱问题。如果代码中添加了任何模块的不同版本,则会显示此信息。检查此帖子https://carlosbecker.com/posts/maven-dependency-hell/