could someone please post me the maven 2 dependency for ha-jdbc and if there is any need to add extra repository?

link|improve this question

41% accept rate
feedback

2 Answers

The Laughingpanda repository seems to have it: http://www.laughingpanda.org/maven2/ha-jdbc/ha-jdbc/

You'll need to add that repository to your pom, too, something like this:

<repositories>
    <repository>
        <id>laughingpanda</id>
        <name>Laughing Panda</name>
        <url>http://www.laughingpanda.org/maven2/</url>
    </repository>
</repositories>

Btw, http://mavensearch.net/ is usually a good point for searching maven artifacts (excluding this one however .. )

Blockquote

link|improve this answer
1  
hi @mglauche, i actually noticed later, that the repository does not contain the latest version, rather a very old version. i am still looking for the right one. please let me know if you found it. – Ikthiander Feb 8 '11 at 13:06
feedback

Ideally you should have a maven repository of yours which queries other repositories when it doesn't have a specific library. In that repository you can manually add libraries which are not available through any other maven repository. That is what we are planning to do with ha-jdbc. BTW did your experiment with ha-jdbc go well?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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