https://github.com/roaringbitmap/jitpackroaringbitmapproject
Using the RoaringBitmap library with JitPack
https://github.com/roaringbitmap/jitpackroaringbitmapproject
Last synced: 11 months ago
JSON representation
Using the RoaringBitmap library with JitPack
- Host: GitHub
- URL: https://github.com/roaringbitmap/jitpackroaringbitmapproject
- Owner: RoaringBitmap
- Created: 2024-10-24T17:35:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-01T12:54:56.000Z (over 1 year ago)
- Last Synced: 2025-01-03T18:46:44.577Z (about 1 year ago)
- Language: Java
- Size: 72.3 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## JitPackRoaringBitmapProject
[](https://github.com/RoaringBitmap/JitPackRoaringBitmapProject/actions/workflows/allversions.yml)
[](https://github.com/RoaringBitmap/JitPackRoaringBitmapProject/actions/workflows/mvnallversions.yml)
This is a demonstration of how to use the RoaringBitmap library from JitPack.
- [Maven](#maven)
- [Gradle](#gradle)
## Maven
Add the following dependency to your pom.xml file...
```xml
com.github.RoaringBitmap.RoaringBitmap
roaringbitmap
1.3.16
```
You may adjust the version number.
Then add the repository to your pom.xml file:
```xml
jitpack.io
https://jitpack.io
```
## Gradle
The approach with gradle is similar.
All you need is to edit your `build.gradle` file like so:
```groovy
plugins {
id 'java'
}
group 'org.roaringbitmap' // name of your project
version '1.0-SNAPSHOT' // version of your project
repositories {
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'com.github.RoaringBitmap.RoaringBitmap:roaringbitmap:1.3.16'
testImplementation 'junit:junit:3.8.1'
}
```