We've been using maven dependencies to specify the libraries so far, i.e.:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.6.10.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>3.6.10.Final</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.4-702.jdbc4</version>
</dependency>
However, we are now running the exact same .war file on different machines, and would like to keep the same One-war-file-to-rule-them-all, but don't want to hit issues by using an older driver on a postgres 9.1 installation (especially when byte array encoding defaults have changed, for example). Cliff-Claven esque like information that probably won't matter but added anyway: OS for both of these installations are Mac OS X Server, the Postgres 8.4 one is running on 10.6, the 9.1 one is running on 10.7. We have no need to upgrade any data (separate instances started from scratch).
Perhaps it's more of a maven question than anything else, but I couldn't seem to see anything specific to my situation. I did find this, but it's older Hibernate 3.5 which doesn't apply anymore.
postgresqldependency should haveruntimescope anyway, since it's used at run-time. If you don't needhibernate-c3p0for compilation, it should also hasruntimescope. – Michal Kalinowski Apr 17 '12 at 13:09