This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new ae27caa79 Remove jitpack.io repository (#3848)
ae27caa79 is described below
commit ae27caa795f91e9eca57eb1a09d58ba99bc0759e
Author: Robert Stupp <[email protected]>
AuthorDate: Mon Feb 23 10:06:28 2026 +0100
Remove jitpack.io repository (#3848)
This change effectively reverts #3504.
RoaringBitmap now publishes to Maven Central using the original Maven
coordinates `org.roaringbitmap:RoaringBitmap`.
Bans for the jitpack.io published group ID
`com.github.RoaringBitmap.RoaringBitmap` and experimental
`org.roaringbitmap:roaringbitmap` are added.
---
gradle/banned-dependencies.txt | 4 ++++
settings.gradle.kts | 4 ----
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gradle/banned-dependencies.txt b/gradle/banned-dependencies.txt
index b5709df42..39312e388 100644
--- a/gradle/banned-dependencies.txt
+++ b/gradle/banned-dependencies.txt
@@ -26,3 +26,7 @@
# Contains old javax.* annotations that we do not want
com.google.code.findbugs:jsr305
+
+# See https://github.com/RoaringBitmap/RoaringBitmap/issues/749, should only
use org.roaringbitmap:RoaringBitmap
+com.github.RoaringBitmap.RoaringBitmap
+org.roaringbitmap:roaringbitmap
diff --git a/settings.gradle.kts b/settings.gradle.kts
index b40a7fbc7..71e384a7c 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -121,10 +121,6 @@ dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
mavenCentral()
- maven {
- url = uri("https://jitpack.io")
- content { includeModule("com.github.RoaringBitmap.RoaringBitmap",
"roaringbitmap") }
- }
val useApacheSnapshots =
providers.gradleProperty("useApacheSnapshots").orNull?.toBoolean() ==
true
if (useApacheSnapshots) {