Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to configure HSQLDB 2.2.5 in Maven POM?

I am unable to find HSQLDB-2.2.5 POM at http://repo1.maven.org/maven2/org/hsqldb/hsqldb. Can anyone help how maven POM can be set to work with HSALDB-2.2.5 version?

like image 392
mavenstudent Avatar asked Jul 21 '11 21:07

mavenstudent


1 Answers

maybe it has not been uploaded yet? There appears to be a 2.2.4 here:

http://repo1.maven.org/maven2/org/hsqldb/hsqldb/2.2.4/

In order to reference it as a dependency in you pom.xml, i guess you'll have to add something like this to your dependencies block

<dependency>
    <groupId>org.hsqldb</groupId>
    <artifactId>hsqldb</artifactId>
    <version>2.2.4</version>
</dependency>
like image 194
mkro Avatar answered Sep 19 '22 01:09

mkro