为什么Spring Boot中不包含Jadira Usertypes的固定版本?

时间:2015-10-04 20:45:41

标签: spring spring-boot

使用Spring Boot定义 pom.xml 时,我似乎必须手动定义Jadira Usertypes版本。我找不到Jadira在documentation中提到的任何地方。

Spring Boot是否有特定原因未向Jadira Usertypes提供自以为是的依赖?

<dependency> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.core</artifactId> <version>__need_to_specify_version_here__</version> </dependency>

1 个答案:

答案 0 :(得分:1)

一般来说,Spring Boot仅为其所依赖的工件提供依赖关系管理,并且通常为其自动配置提供依赖关系管理。 Jadira不符合这些标准,因此您必须手动指定版本。