在Spring Boot Java项目中用于Google联系人V3的maven依赖项?

问题描述 投票:0回答:1

我正在尝试为我的项目集成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>
spring-boot google-contacts-api maven-dependency
1个回答
0
投票

您需要使用以下依赖项:

<dependency>
    <groupId>com.google.gdata</groupId>
    <artifactId>core</artifactId>
    <version>1.47.1</version>
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.