Skip to content

Commit f786517

Browse files
Update README.md
1 parent 0ccdf97 commit f786517

File tree

1 file changed

+37
-4
lines changed

1 file changed

+37
-4
lines changed

README.md

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,47 @@ The following additional types are implemented, but less tested:
2727

2828
## Usage
2929

30-
When using Maven:
30+
### Maven
31+
32+
When using Maven: The latest version, 1.0.4, is not yet available on Maven central, see [issue #48](https://github.com/FastFilter/fastfilter_java/issues/48). However, it is available at https://jitpack.io/:
33+
34+
<repositories>
35+
<repository>
36+
<id>jitpack.io</id>
37+
<url>https://jitpack.io</url>
38+
</repository>
39+
</repositories>
3140

3241
<dependency>
33-
<groupId>io.github.fastfilter</groupId>
34-
<artifactId>fastfilter</artifactId>
35-
<version>1.0.4</version>
42+
<groupId>io.github.fastfilter</groupId>
43+
<artifactId>fastfilter</artifactId>
44+
<version>1.0.4</version>
3645
</dependency>
3746

47+
### Gradle
48+
49+
repositories {
50+
mavenCentral()
51+
maven {
52+
url 'https://jitpack.io'
53+
}
54+
}
55+
56+
dependencies {
57+
implementation 'io.github.fastfilter.fastfilter_java:fastfilter:1.0.4'
58+
}
59+
60+
### Maven Central (version 1.0.2)
61+
62+
The older version, 1.0.2, is available on Maven central.
63+
64+
<dependency>
65+
<groupId>io.github.fastfilter</groupId>
66+
<artifactId>fastfilter</artifactId>
67+
<version>1.0.2</version>
68+
</dependency>
69+
70+
3871
# Other Xor Filter Implementations
3972

4073
* [C](https://github.com/FastFilter/xor_singleheader)

0 commit comments

Comments
 (0)