I am attempting to create some integration tests for my Spring web app using Jetty accessing a local HSQL database. The goal: run the tests using Selenium (or similar), mock/stub out all external systems, and setup a HSQL database to hit instead of our shared Oracle database. The tests are started during a maven build (the integration-test phase). The database is initialized by Spring's "jdbc:initialize-database", and is registered as a JNDI datasource in Jetty.I am attempting to create some integration test