Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://hsqldb.org/ - where is the maven repository for the latest version 2.0.0 bits

share|improve this question

3 Answers

up vote 7 down vote accepted

It seems to be deployed to REPO1 already; http://repo1.maven.org/maven2/org/hsqldb/hsqldb/2.0.0/

share|improve this answer
thanks for the link, appreciate it – Joe Jun 14 '10 at 5:44

Just to clarify a bit, and to help anyone who gets here looking for a direct solution in the pom, the groupId has changed to reflect the new preferred syntax, so your pom.xml should contain:

<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.0.0</version>

Instead of:

<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.whatever</version>

The latter groupId doesn't contain anything newer than 1.8.0.10, which caught me out.

share|improve this answer

It seems that the latest version still hasn't been deployed to the central Maven repository or any other public repo available on the net. Until then you can install it manually on your local machine or even better deploy on your company's repository.

share|improve this answer
thanks for the info. – Joe Jun 11 '10 at 11:41
Do you know why this is still not in the MVN database? – Casey Jul 14 '12 at 1:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.