我已将以下 maven 模块安装到我的本地 maven 存储库 EWS Maven 模块,但 IDE(在本例中为 Eclipse)似乎不知道以下类`GetUserAvailabilityRequest。
有趣的是,我可以mvn compile
在我的项目上运行一个成功使用上述依赖项的项目。
我什至可以在 Eclipse 中的 Maven 依赖项下的 jar 文件中看到类文件。
有谁知道为什么会发生这种情况?
编辑@tolitius:
ews-java 是我的项目的依赖项,而不是我要导入的项目
这是有问题的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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.conf</groupId>
<artifactId>conferenceclient</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>microsoft.exchange</groupId>
<artifactId>exchange-ws-api</artifactId>
<version>1.1.4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>