use of liquibase.integration.cdi.annotations.LiquibaseType in project liquibase by liquibase.
the class CDITestProducer method createDataSource.
@Produces
@LiquibaseType
public DataSource createDataSource() throws SQLException {
JDBCDataSource ds = new JDBCDataSource();
ds.setDatabase("jdbc:hsqldb:mem:test");
ds.setUser("sa");
ds.setPassword("");
return ds;
}
Aggregations