Я использую Spring boot 2.1.5.RELEASE, и у меня есть следующая зависимость в моем pom.xml
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
Но org.postgresql.util.PGobject
не найден. В другом не загрузочном проекте у меня есть следующая зависимость
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.5</version>
</dependency>
и org.postgresql.util.PGobject
доступны для использования.
Есть идеи, почему org.postgresql.util.PGobject
не найден в проекте весенней загрузки?