我找不到spring-social-google(https://github.com/GabiAxel/spring-social-google)的maven依赖。 根据文档,依赖关系的定义如下:
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-google</artifactId>
<version>${org.springframework.social-google-version}</version>
</dependency>
然而,它不存在于maven存储库中。 任何人都可以确认吗?
答案 0 :(得分:1)
根据Maven存储库,spring-social-google的latest版本为1.0.0.RELEASE,如下所示:
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-google</artifactId>
<version>1.0.0.RELEASE</version>
</dependency>
将它添加到POM就足够了。在您的情况下,您使用的是占位符版本${org.springframework.social-google-version}
。
因此,在您的POM中,您应该拥有以下内容:
<properties>
<org.springframework.social-google-version>1.0.0.RELEASE</org.springframework.social-google-version>
</properties>
Maven将替换依赖声明中的属性值并解决它。