An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

## JitPackRoaringBitmapProject
[![gradle (11, 17, 21) CI](https://github.com/RoaringBitmap/JitPackRoaringBitmapProject/actions/workflows/allversions.yml/badge.svg)](https://github.com/RoaringBitmap/JitPackRoaringBitmapProject/actions/workflows/allversions.yml)
[![maven (11) CI](https://github.com/RoaringBitmap/JitPackRoaringBitmapProject/actions/workflows/mvnallversions.yml/badge.svg)](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'
}
```