I\'m trying to develop a Java application with Maven while using Hibernate with a PostgreSQL database for persistence. I don\'t understand how I\'m supposed to connect the P
PostgreSQL drivers jars are included in Central Repository of Maven:
For PostgreSQL up to 9.1, use:
postgresql postgresql VERSION
or for 9.2+
org.postgresql postgresql VERSION
(Thanks to @Caspar for the correction)