Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.client.integration.tests/osee-application-server.xml')
-rw-r--r--plugins/org.eclipse.osee.client.integration.tests/osee-application-server.xml12
1 files changed, 9 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.client.integration.tests/osee-application-server.xml b/plugins/org.eclipse.osee.client.integration.tests/osee-application-server.xml
index 61d7d5c9a05..0064cd823d2 100644
--- a/plugins/org.eclipse.osee.client.integration.tests/osee-application-server.xml
+++ b/plugins/org.eclipse.osee.client.integration.tests/osee-application-server.xml
@@ -42,11 +42,11 @@
<echo message="Osee Application Server Db Type: [${xserver-db-type}]" />
</target>
- <target name="writeH2ConnectionFile" depends="init">
- <writeConnectionFile dbType="h2" dbHome="${xserver-db-home}" dbPrefix="jdbc:h2" dbDriver="h2.db.connection" dbName="${xserver-db-name}" dbUser="${xserver-db-username}" dbPasswd="${xserver-db-password}" dbAddress="${xserver-db-address}" dbPort="${xserver-db-port}" connectionFilePath="${osee.app.server.connectionFile}" connectionid="${osee.app.server.connectionId}" />
+ <target name="writeHsqlConnectionFile" depends="init">
+ <writeConnectionFile dbType="hsql" dbHome="${xserver-db-home}" dbPrefix="jdbc:hsqldb:hsql" dbDriver="hsql.db.connection" dbName="${xserver-db-name}" dbUser="${xserver-db-username}" dbPasswd="${xserver-db-password}" dbAddress="${xserver-db-address}" dbPort="${xserver-db-port}" connectionFilePath="${osee.app.server.connectionFile}" connectionid="${osee.app.server.connectionId}" />
</target>
- <target name="run" depends="init,writeH2ConnectionFile,startServer" />
+ <target name="run" depends="init,writeHsqlConnectionFile,startServer" />
<target name="startServer">
<pathconvert property="launcherJarPath" setonempty="false">
@@ -142,6 +142,12 @@
&lt;Url&gt;#PREFIX#://#HOST#:#PORT#/#DBHOME##DBNAME#&lt;/Url&gt;${line.separator}
&lt;/ConnectionDescription&gt;${line.separator}
${line.separator}
+ &lt;ConnectionDescription id=&quot;hsql.db.connection&quot;&gt;${line.separator}
+ &lt;Driver&gt;org.hsqldb.jdbc.JDBCDriver&lt;/Driver&gt;${line.separator}
+ &lt;Url&gt;#PREFIX#://#HOST#:#PORT#/#DBNAME#&lt;/Url&gt;${line.separator}
+ &lt;Property key=&quot;hsqldb.tx&quot; value=&quot;MVCC&quot; /&gt;${line.separator}
+ &lt;/ConnectionDescription&gt;${line.separator}
+ ${line.separator}
</echo>
<echo file="@{connectionFilePath}" append="true">

Back to the top