【发布时间】:2021-09-02 02:28:05
【问题描述】:
似乎我无法在 IntelliJ 中向我的 Maven 项目添加正确的依赖项。
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gmail</artifactId>
<version>v1-rev20210614-1.31.0</version>
</dependency>
这是我在 pom.xml 文件中添加的依赖项,但 IntelliJ 只是将单词标记为红色并说:Dependency 'com.google.apis:google-api-services-gmail:v1-rev20210614 -1.31.0' 未找到。
我已经搜索了要下载的 jar 文件并手动添加到项目结构中的依赖项中,但我似乎找不到。
你能帮我告诉我我做错了什么吗?
【问题讨论】:
标签: maven intellij-idea gmail-api