-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUILD] Upgrade RoaringBitmap
to 1.3.19
#49710
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,8 +136,8 @@ | |
<artifactId>tink</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.roaringbitmap</groupId> | ||
<artifactId>RoaringBitmap</artifactId> | ||
<groupId>com.github.RoaringBitmap.RoaringBitmap</groupId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, interesting. |
||
<artifactId>roaringbitmap</artifactId> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -356,6 +356,17 @@ | |
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The new version of
The second method requires additional configuration of a GitHub token, so Method One was chosen here. |
||
<id>jitpack.io</id> | ||
<name>JitPack</name> | ||
<url>https://jitpack.io</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<!-- | ||
This is used as a fallback when the first try fails. | ||
|
@@ -868,9 +879,9 @@ | |
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.roaringbitmap</groupId> | ||
<artifactId>RoaringBitmap</artifactId> | ||
<version>1.3.0</version> | ||
<groupId>com.github.RoaringBitmap.RoaringBitmap</groupId> | ||
<artifactId>roaringbitmap</artifactId> | ||
<version>1.3.19</version> | ||
</dependency> | ||
|
||
<!-- Netty Begin --> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -277,6 +277,7 @@ object SparkBuild extends PomBuild { | |
// Google Mirror of Maven Central, placed first so that it's used instead of flaky Maven Central. | ||
// See https://storage-download.googleapis.com/maven-central/index.html for more info. | ||
"gcs-maven-central-mirror" at "https://maven-central.storage-download.googleapis.com/maven2/", | ||
"jitpack" at "https://jitpack.io", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just wondering if this can cause a flakiness like the default Maven. Due to the Apache Spark's high traffic, the Maven was flaky. So, we are using GCS Maven as the first cache here inevitably. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Understand your concerns. We can wait for a while longer to see if |
||
DefaultMavenRepository, | ||
Resolver.mavenLocal, | ||
Resolver.file("ivyLocal", file(Path.userHome.absolutePath + "/.ivy2/local"))(Resolver.ivyStylePatterns) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will revert after test