PostgreSQLドライバーのjarファイルはMavenの中央リポジトリに含まれています:
- PostgreSQLドライバーの含まれているバージョンのリスト。
9.1までのPostgreSQLの場合、以下を使用します:
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>VERSION</version>
</dependency>
または9.2+の場合
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>VERSION</version>
</dependency>
(訂正してくれた@Casparに感謝します)