Mercurial > lada > lada-server
view src/test/resources/test-ds.xml @ 311:eeb5d3a5e194
JUnit test cases and small test application for LAF importer.
!! Currently the tests are ignored when running with maven.
!! Some system properties are still missing in maven (coming soon ;))
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 20 Aug 2013 16:19:20 +0200 |
parents | 177351d4cca9 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <!-- This is an unmanaged datasource. It should be used for proofs of concept or testing only. It uses H2, an in memory database that ships with JBoss AS. --> <datasources xmlns="http://www.jboss.org/ironjacamar/schema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.org/ironjacamar/schema http://docs.jboss.org/ironjacamar/schema/datasources_1_0.xsd"> <!-- The datasource is bound into JNDI at this location. We reference this in META-INF/test-persistence.xml --> <datasource jndi-name="java:jboss/datasources/ladaTestDS" pool-name="lada-test" enabled="true" use-java-context="true"> <connection-url>jdbc:h2:mem:lada-test;DB_CLOSE_DELAY=-1</connection-url> <driver>h2</driver> <security> <user-name>sa</user-name> <password>sa</password> </security> </datasource> </datasources>