Eclipse(Photon)找不到我的Maven依赖罐

时间:2018-09-06 21:32:56

标签: java eclipse maven

我正在尝试从我的Maven存储库导入一个库。但是我收到错误消息"The import org cannot be resolved",下面的截图:

enter image description here

但是,我们可以在Package Explorer中的Maven Dependencies下看到jar:

enter image description here

此外,我的pom.xml如下:

<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>Test1</groupId>
    <artifactId>Test1</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.7.0</version>
                <configuration>
                    <release>10</release>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.webjars.npm</groupId>
            <artifactId>gregorian-calendar</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.8</version>
        </dependency>
    </dependencies>
</project>

我在这里想念什么?我还需要import org.apache.commons.lang3.time.DateUtils做些什么?谢谢!

注意:我在Mac上

1 个答案:

答案 0 :(得分:1)

您似乎有一个module-info.java。 在这种情况下,您需要向其中添加requires org.apache.commons.lang3;(这是MANIFEST.MF内部commons-lang3-3.8.jar中的自动模块名称)。

此外,命名模块中不允许在默认程序包中包含MainTest1,因此您必须将其移动到程序包中。

或者,您可以删除module-info.java,并且大多数情况下应该像Java 9之前一样工作