Maven project & PostgreSQL fix

* Made the PostgreSQL library a compile-time dependency (it used to be
runtime only as it was used as the JDBC driver, however it is now used
directly to access PostgreSQL-specific types; this does not matter, as
the DB code is already 100% specific to PostgreSQL)
This commit is contained in:
Emmanuel BENOîT 2012-01-24 14:51:51 +01:00
parent 775426347a
commit 4e27875d87

View file

@ -63,7 +63,6 @@
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>