Baqend / Orestes-Bloomfilter

Library of different Bloom filters in Java with optional Redis-backing, counting and many hashing options.
Other
843 stars 245 forks source link

Publishing to Maven Central #8

Closed eponvert closed 10 years ago

eponvert commented 10 years ago

Is there any plan to publish this project artifacts to Maven Central? It would make adopting this library easy for a lot of Java developers (and Groovy, Scala, Clojure etc too) http://search.maven.org Thanks!

DivineTraube commented 10 years ago

Hi, it's not in Maven Central now, but at least you can now include it from our Github-hosted repo:

   <dependencies>
        <dependency>
            <groupId>com.baqend</groupId>
            <artifactId>bloom-filter</artifactId>
            <version>1.0</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>orestes-bloom-filter</id>
            <url>https://raw.githubusercontent.com/Baqend/Orestes-Bloomfilter/master/maven-repo</url>
        </repository>
    </repositories>