Step 2: Create module file for HSQL database
You will need to create a module file for the HSQL database.
CAUTION:
The version of HSQLDB used should be 2.3.2.
Download the supported JDBC driver for HSQLDB and place it in the
hsqldb/main
directory.In the
hsqldb/main
directory, create a text file namedmodule.xml
.Copy this code into the
module.xml
file, then modify it so that the name of the JDBC driver you just downloaded appears in theresource-root
path.<?xml version="1.0" encoding="UTF-8"?> <module xmlns="urn:jboss:module:1.0" name="org.hsqldb"> <resources> <resource-root path="[Name of JDBC Jar You Downloaded Here]"/> </resources> <dependencies><module name="javax.api"/></dependencies> </module>
Save and close the
module.xml
file.
PreviousStep 1: Create module file for Pentaho Repository databaseNextStep 3: Create module file for H2 database
Last updated
Was this helpful?