在eclipse中

时间:2018-04-29 14:32:14

标签: java eclipse maven

我正在Eclipse中开展一个maven项目。它具有Apache POI的依赖性。在POM.xml中,我将依赖项添加为 -

...
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>${poi.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>${poi.version}</version>
        </dependency>
...

此外,在Eclipse首选项中,我检查了Download Artifact Sources选项。我仍然无法看到POI源代码。我收到错误Source not found

在这种情况下,我是否需要在POM.xml中显式添加源依赖关系jar,还是可以进行任何其他调整?

enter image description here

0 个答案:

没有答案