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 85c08c815 Add jitpack.io repository (#3504)
85c08c815 is described below
commit 85c08c815fc606b9003d0b41d23eb2bd1f61c641
Author: Robert Stupp <[email protected]>
AuthorDate: Mon Jan 26 08:43:11 2026 +0100
Add jitpack.io repository (#3504)
The Iceberg PR https://github.com/apache/iceberg/pull/14991 bumps the
https://github.com/RoaringBitmap/RoaringBitmap version, which is not published
to Maven Central. We need to declare in the jitpack.io repository to prepare
for the next Iceberg release.
---
settings.gradle.kts | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/settings.gradle.kts b/settings.gradle.kts
index a5e7d68ee..b6a0c09b5 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -118,6 +118,10 @@ dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
mavenCentral()
+ maven {
+ url = uri("https://jitpack.io")
+ content { includeModule("com.github.RoaringBitmap.RoaringBitmap",
"roaringbitmap") }
+ }
gradlePluginPortal()
}
}