我正在尝试为我的项目集成google contact API,但找不到用于访问ContactsService类的google contact V3 maven依赖项。
我尝试了gdata-core依赖性,通过该依赖性,构建失败,因为我的项目还包含日历依赖性和Gmail依赖性,所以我不知道要使用哪种依赖性?下面我已经提到了我尝试使用的gdata核心依赖和gdata contact依赖都没有被编译]
<dependency>
<groupId>com.google.gdata</groupId>
<artifactId>gdata-contacts-3.0</artifactId>
<version>1.41.5</version>
</dependency>
<dependency>
<groupId>com.google.gdata</groupId>
<artifactId>gdata-core</artifactId>
<version>1.47.1</version>
</dependency>
您需要使用以下依赖项:
<dependency>
<groupId>com.google.gdata</groupId>
<artifactId>core</artifactId>
<version>1.47.1</version>
</dependency>