hsqldb Maven Dependency

This page gives you a quick reference to get hsqldb dependency for Maven or Gradle projects. You can also download the hsqldb jar dependency, the link given at the "Download JAR File" section.

HyperSQL Database is a modern relational database manager that conforms closely to the SQL:2011 standard and JDBC 4 specifications. It supports all core features and RDBMS. HSQLDB is used for the development, testing, and deployment of database applications.

HyperSQL Database Maven Dependency

Copy below HyperSQL Database maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.hsqldb/hsqldb -->
<dependency>
    <groupId>org.hsqldb</groupId>
    <artifactId>hsqldb</artifactId>
    <version>2.5.0</version>
    <scope>test</scope>
</dependency>
For more details about the proper version to use, check out the following Maven Central link.

HyperSQL Database Gradle Dependency

Copy below HyperSQL Database Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.hsqldb/hsqldb
testCompile group: 'org.hsqldb', name: 'hsqldb', version: '2.5.0'

Download JAR File

Check for Latest Release

Reference




Comments