Update:
As suggested in the answer below, use:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1211</version>
</dependency>
Check this link: https://mvnrepository.com/artifact/org.postgresql/postgresql/9.4.1211
and this one: https://github.com/pgjdbc/pgjdbc
It is possible to use the postgresql version 9.5.3 in a maven spring boot project? In that case, what I have to write in my pom.xml? Since I can't find code like this one:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4-1200-jdbc41</version>
</dependency>
for the version I want to use, and if I write 9.5.3 inside the version tag maven can't find the right jar for the project.