r214 - in trunk: . wikitty-hessian-server
Author: echatellier Date: 2010-07-30 16:37:05 +0200 (Fri, 30 Jul 2010) New Revision: 214 Url: http://nuiton.org/repositories/revision/wikitty/214 Log: Add h2 and postgresql support on hessian server Modified: trunk/pom.xml trunk/wikitty-hessian-server/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-07-30 14:18:02 UTC (rev 213) +++ trunk/pom.xml 2010-07-30 14:37:05 UTC (rev 214) @@ -81,6 +81,13 @@ </dependency> <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + <version>8.4-701.jdbc4</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> Modified: trunk/wikitty-hessian-server/pom.xml =================================================================== --- trunk/wikitty-hessian-server/pom.xml 2010-07-30 14:18:02 UTC (rev 213) +++ trunk/wikitty-hessian-server/pom.xml 2010-07-30 14:37:05 UTC (rev 214) @@ -46,6 +46,16 @@ <groupId>com.caucho</groupId> <artifactId>hessian</artifactId> </dependency> + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + <scope>runtime</scope> + </dependency> </dependencies> <!-- ************************************************************* -->
participants (1)
-
echatellier@users.nuiton.org