Skip to content

Latest commit

 

History

18 提交

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

仓库 files navigation

JitPackRoaringBitmapProject

gradle (11, 17, 21) CI maven (11) CI

This is a demonstration of how to use the RoaringBitmap library from JitPack.

Maven

Add the following dependency to your pom.xml file...

<dependency>
    <groupId>com.github.RoaringBitmap.RoaringBitmap</groupId>
    <artifactId>RoaringBitmap</artifactId>
    <version>1.6.9</version>
</dependency>

You may adjust the version number.

Then add the repository to your pom.xml file:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
     </repository>
</repositories>

Gradle

The approach with gradle is similar.

All you need is to edit your build.gradle file like so:

plugins {
    id 'java'
}

group 'me.project' // 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.6.9'
    testImplementation 'junit:junit:3.8.1'
}

关于

Using the RoaringBitmap library with JitPack

Resources

Stars

1 star

关注者

4 watching

复刻s

发布

Used by

贡献者

Languages