From 9b65ae941c433a2540da6071e2ac46c78bec28eb Mon Sep 17 00:00:00 2001 From: Aron Roberts Date: Tue, 18 Jan 2011 23:41:43 +0000 Subject: [PATCH] CSPACE-3419: Hibernate configuration file in Authentication service updated to use replaceable params, much like other similar config files throughout services. --- .../jaxb/src/test/resources/hibernate.cfg.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/services/authentication/jaxb/src/test/resources/hibernate.cfg.xml b/services/authentication/jaxb/src/test/resources/hibernate.cfg.xml index c7c600995..422b7a607 100644 --- a/services/authentication/jaxb/src/test/resources/hibernate.cfg.xml +++ b/services/authentication/jaxb/src/test/resources/hibernate.cfg.xml @@ -12,11 +12,11 @@ "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> - jdbc:mysql://localhost:3306/cspace - com.mysql.jdbc.Driver - test - test - org.hibernate.dialect.MySQLDialect + @DB_URL@ + @DB_DRIVER_CLASS@ + @DB_USER@ + @DB_PASSWORD@ + @DB_DIALECT@ org.hibernate.transaction.JDBCTransactionFactory thread true -- 2.47.3